C# 中 List.Sort运用(IComparer<T>)排序用法
作者:网络转载 发布时间:[ 2013/10/8 14:59:47 ] 推荐标签:
Sort排序后得到的如下效果:
字符串中带数字情况:
字符串中带数字情况:
view plaincopy
List<string> strList = new List<string>();
strList.Add("A2013092289-(1)");
strList.Add("A2013092289-(13)");
strList.Add("A2013092289-(14)");
strList.Add("A2013092289-(15)");
strList.Add("A2013092289-(2)");
strList.Add("A2013092289-(20)");
strList.Add("A2013092289-(3)");
strList.Sort(compar);
|
纯数字情况排序:
view plaincopy
List<string> dinosaurs = new List<string>();
dinosaurs.Add("1");
dinosaurs.Add("32");
dinosaurs.Add("43");
dinosaurs.Add("4");
dinosaurs.Sort(compar);
|
完全字母排序:不支持。
view plaincopy
List<string> strIng = new List<string>();
strIng.Add("Pachycephalosaurus");
strIng.Add("Amargasaurus");
strIng.Add("Mamenchisaurus");
strIng.Add("Deinonychus");
strIng.Sort(compar);
|
本文内容不用于商业目的,如涉及知识产权问题,请权利人联系SPASVO小编(021-61079698-8054),我们将立即处理,马上删除。