如何从char数组转换为字符串?

时间:2014-07-08 20:23:15

标签: types

我很抱歉我的英语不好。

我无法转换..当我尝试将char数组转换为字符串时,字符串的值已更改" True"。我无法理解。

示例代码:

code

label5的外观:

Label

1 个答案:

答案 0 :(得分:1)

不要使用System::Convert::ToString。相反,只需使用以char[]作为参数的字符串构造函数:

String^ str2 = gcnew String(str);