各种字符串转换

System::String^转换为char*

char* ch= (char*)(void*)System::Runtime::InteropServices::Marshal::StringToHGlobalAnsi(str);

将char*转换为System::String^
String^ str= System::Runtime::InteropServices::Marshal::PtrToStringAnsi((IntPtr)ch);

Posted in Cli

发表回复

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据