C++/CLi to C#
C# to C++
std::string str = ...; System::String^ mgdstr = gcnew System::String(str.c_str();and the other way
C# to C++
System::String^ value = ...; CString cstr(value); const std::string converted(cstr);
No comments:
Post a Comment