1、将一位数组转换为字符串的表现形式(string.Join)
int[] data = new int[] { 10, 5, 48, 72, 14, 2, 88, 46 };
System.Diagnostics.Trace.WriteLine(string.Join(",", data);
输出结果:10,5,48,72,14,2,88,46
c# 笔记
原文:https://www.cnblogs.com/yeshenmeng/p/9705752.html