How do you convert System::String to std::string in C++ .NET?
feedback
|
|
There's a whole MSDN article on how to do this. | |||
|
feedback
|
|
There is cleaner syntax if you're using a recent version of .net
This also gives you better clean-up in the face of exceptions. There is an msdn article for various other conversions | ||||
|
feedback
|
| |||
|
feedback
|
|
And in response to the "easier way" in later versions of C++/CLI, you can do it without the marshal_context. I know this works in Visual Studio 2010; not sure about prior to that.
| |||||||||
feedback
|