关于:删除重复元素,错在哪呢
关于:剔除重复元素,错在哪呢?C# codeListint num new Listint() { 2, 9, 9, 2, 3, 9 }num.distinct
关于:剔除重复元素,错在哪呢?
C# codeList<int> num = new List<int>() { 2, 9, 9, 2, 3, 9 };num.distinct();foreach (int item in num) { for (int i = 0; i < num.Distinct().Count(); i++) { if (f.List.Cell(1, 1).Text.Length < sj.Distinct().Count()) { f.List.Cell(1, 1).Text = f.List.Cell(1, 1).Text + sj[i].ToString(); } } }
希望得到的结果是 239
[解决办法]List<int> num = new List<int>() { 2, 9, 9, 2, 3, 9 };
num = num.Distinct().ToList();
[解决办法]看了又看,LZ需要的是这个吧
C# codef.List.Cell(1, 1).Text = string.Join("", num.Distinct().ToArray());
[解决办法]