方式一:通过循环数组拼接的方式
int[] types = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
string result = string.Empty;
for (int i = 0; i < types.Length; i++)
{
result += types[i];
if (i < types.Length - 1)
result += ",";
}
MessageBox.Show(result);
方式二:使用string 对象中Join方法实现;
int[] types = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
string result = string.Join(",", types);
MessageBox.Show(result);

本文介绍了两种将整型数组转换为字符串的方法。第一种方法通过循环遍历数组并使用逗号连接每个元素来实现;第二种方法则利用了string.Join方法,以更简洁的方式完成同样的任务。

被折叠的 条评论
为什么被折叠?



