List.Sort()小技巧

List list = parentGo.GetComponents();

list.Sort(

delegate(UIPanel a, UIPanel b)

return a.depth.CompareTo(b.depth);

});

list.Sort((UIPanel a,UIPanel b )=> a.depth.CompareTo(b.depth));


只要将后面的参数与前面的参数进行对比,这样返回的结果,将是一个从小到大排列了。这种方式适合于字符串等许多类型的排序。

和大家分享一下 :)


你可能感兴趣的:(编程指南,排序)