摘要: IEnumerable public interface ICollection : IEnumerable, IEnumerable { void Add(T item); void Clear(); bool Contains(T item); void CopyTo(T[] array, int arrayIndex); bool Remove(T item); int Count { get; } bool IsReadOnly { get; } }再看IList ... 阅读全文
posted @ 2013-11-26 16:24 luyujie_may 阅读(223) 评论(0) 推荐(0) 编辑