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 !"); } }
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有