Can someone please post a simple code that would convert
System::String^
to
C++ std::string
?
i.e I just want to assign the value of
String^ originalString;
to
std::string newString;
|
Can someone please post a simple code that would convert
to C++ ? i.e I just want to assign the value of
to
|
||||
|
|
|
Check out Sorry can't post code now; I don't have VS on this machine to check it compiles before posting. |
|||||||
|
|
Don't roll your own, use these handy (and extensible) wrappers provided by Microsoft: http://msdn.microsoft.com/en-us/library/bb384865.aspx |
|||||
|
|
This worked for me:
|
|||||||
|
|
Here are some conversion routines I wrote many years ago for a c++/cli project, they should still work.
|
|||
|
|
|
You can easily do this as follows
|
||||
|
|
I spent hours trying to convert a windows form listbox ToString value to a standard string so that I could use it with fstream to output to a txt file. My Visual Studio didn't come with marshal header files which several answers I found said to use. After so much trial and error I finally found a solution to the problem that just uses System::Runtime::InteropServices:
And here is the MSDN page with the example: http://msdn.microsoft.com/en-us/library/1b4az623(v=vs.80).aspx I know it's a pretty simple solution but this took me HOURS of troubleshooting and visiting several forums to finally find something that worked. |
|||
|
|