急急急:怎样将一个String[]数组转换为String字符串啊?

求求各位大侠帮忙啦
2025-05-15 03:53:01
推荐回答(3个)
回答1:

String[] strArray = new String[10];
String strNew = String.Empty;
for (int index = 0; index < strArray.Length; index++)
{
strNew += strArray[index];
}

回答2:

直接拼接起来就是了!

回答3:

啊我错了