방법: 표준 문자열을 System::String으로 변환
이 항목에서는 C++ 표준 라이브러리 문자열(<문자열>)을 .로 String변환하는 방법을 보여 줍니다.
예시
// convert_standard_string_to_system_string.cpp
// compile with: /clr
#include <string>
#include <iostream>
using namespace System;
using namespace std;
int main() {
string str = "test";
cout << str << endl;
String^ str2 = gcnew String(str.c_str());
Console::WriteLine(str2);
// alternatively
String^ str3 = gcnew String(str.data());
Console::WriteLine(str3);
}
test
test
test