- 博客(0)
- 资源 (2)
- 收藏
- 关注
C#接口使用(排序问题)
接口基本使用
public class NameComparer : IComparer<Student>
{
#region IComparer<Student> 成员
public int Compare(Student x, Student y)
{
return (x.Name.CompareTo(y.Name));
}
#endregion
}
2011-05-25
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人