今天在做一個劃詞的程序
std::string ConvertToString(System::String^ str)
{
int q=(int)System::Runtime::InteropServices::Marshal::StringToHGlobalAnsi(str);
char* p=(char*)q;
return std::string(p);
}
其實主要是為了unicode到ansi的轉換
From:http://tw.wingwit.com/Article/program/net/201311/12333.html