我有个问题。我需要将字符串类型转换为 unicode。我知道方法喜欢
string.c_str();
但它在我的代码中不起作用。
我有功能
void modify(string infstring, string* poststring)
在其中我需要在备忘录中显示 infstring。像一个
Form1->Memo1->Lines->Add("some text "+infstring.c_str()+" some text");
但编译器说我“E2085 无效指针添加”
我该如何解决我的问题?