C#中list.sort方法的使用 30

下面的这个程序实现了按ID排序,现在要加入代码,实现可以选择按ID、姓名等排序,请问怎么改?classProgram{staticvoidMain(string[]arg... 下面的这个程序实现了按ID排序,现在要加入代码,实现可以选择按ID、姓名等排序,请问怎么改?
class Program
{
static void Main(string[] args)
{
List<Employee> aList = new List<Employee>();
aList.Add(new Employee(2, "Li", "Net"));
aList.Add(new Employee(3, "Yu", "Net"));
aList.Add(new Employee(1, "Liu", "Data"));
aList.Add(new Employee(5, "Jia", "Soft"));
aList.Add(new Employee(4, "Jiang", "Train"));
aList.Sort();//使用CompareTo进行排序
//逐个从列表中取出每一个对象
foreach (Employee iItem in aList)
{
Console.WriteLine("ID:{0}, Name:{1}, Department:{2}", iItem.ID, iItem.name, iItem.department);
}
}
}
public class Employee : IComparable
{
public int ID;
public string name;
public string department;
public Employee(int iID, string sName, string sDepartment)
{
ID = iID;
name = sName;
department = sDepartment;
}

public int CompareTo(object obj)
{
if (obj is Employee)
{
Employee anotherEmployee = obj as Employee;
return this.ID - anotherEmployee.ID;
}
throw new ArgumentException("object is not a Employee");
}

}
展开
 我来答
百度网友638b535
2008-10-08 · TA获得超过234个赞
知道小有建树答主
回答量:268
采纳率:0%
帮助的人:330万
展开全部
Sort(Comparison<(Of <(T>)>))或者Sort(IComparer<(Of <(T>)>))方法。
具体的做法你可以查MSDN,里面有例子的。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式