Hi!
I'd like to know how to transform (or convert) a System :: String to a
std :: string under Visual Studio (C++) 2005 Beta.
Sincerely,
bor_kev
*---------------------------------*
Posted at: http://www.GroupSrv.com
Check: http://wwww.HotCodecs.com
*---------------------------------*
William DePalo [MVP VC++] - 28 Jan 2005 15:31 GMT
> I'd like to know how to transform (or convert) a System :: String to a
> std :: string under Visual Studio (C++) 2005 Beta.
Take a look at this:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;311259
It explains the unobvious part of your task: how to go from an instance
System::String to a pointer to characters.
Regards,
Will