最佳答案
我有一个整数数组:
int[] number = new int[] { 2,3,6,7 };
将这些数字转换成单个字符串的最简单方法是什么(如: "2,3,6,7"
) ?
我使用的是 C # 和.NET 3.5。