systemarray用于数组排序的方法是

更新时间:01-27 教程 由 心偿~ 分享

systemarray用于数组排序的方法是?

其实就是让你写一个类,实现IComparable接口,再通过调用Sort方法对该类的实例(一维数组)排序。 class Student:IComparable { private string name; private int score; public int CompareTo(object obj) { Student _obj = obj as Student; if (_obj != null) { return this.score.CompareTo(_obj.score); } else throw new ArgumentException("Object is not a Student !"); } }

声明:关于《systemarray用于数组排序的方法是》以上内容仅供参考,若您的权利被侵害,请联系13825271@qq.com
本文网址:http://www.25820.com/tutorial/14_2194550.html