摘要: SortedList表示键/值对的集合,这些键/值对基于关联的 System.Collections.Generic.IComparer<T> 实现按照键进行升序排序public class SortedList<TKey, TValue> : IDictionary<TKey, TValue>, ICollection<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>, IDictionary, ICollection, 阅读全文
posted @ 2013-04-27 17:10 赶路人之刚出发 阅读(261) 评论(0) 推荐(0) 编辑
摘要: public class Classroom { /// <summary> /// 班级Id /// </summary> public int ClassId { get; set; } /// <summary> /// 班级名称 /// </summary> public string ClassName { get; set; } } public class Student { /// <summary> ///... 阅读全文
posted @ 2013-04-27 15:52 赶路人之刚出发 阅读(422) 评论(0) 推荐(0) 编辑