
.net
Veiz
这个作者很懒,什么都没留下…
展开
-
C++/CLI 中字符串类型的转化: 把System::String转化为std::string
Stan Lippmans BLog.DoNotDisplay { display: none; }System::String -> std::string A reader asks, Sender: Erik Brendengen Is there an easy way to convert from String^ to std::s转载 2006-03-26 05:27:00 · 4533 阅读 · 0 评论 -
C++/CLI 中字符串类型的转化: 把std::string转化为System::String
#include using namespace std;string nativeString("Hello!");String^ managedString = gcnew String(nativeString.c_str());原创 2006-03-26 05:37:00 · 2863 阅读 · 0 评论