vs2019 c#与c++传递字符串时 需要转化
参考:https://blog.csdn.net/weixin_30561425/article/details/99779090
string s = "asdf";
//字符转char
char[] c = s.ToCharArray();
Console.WriteLine(s[0]);
//char转string
string s1 = c.ToString();
Console.WriteLine(s);
Console.ReadKey();
转载于:https://www.cnblogs.com/zywf/p/4501861.html