• ICollection 的扩展,支持IEnumerable 和ICollection的所有操作
  • 支持更多列表项操作,如列表中插入和删除元素
  • This is the only interface in the System.Collection that contains all functionality of IEnumerable and ICollection and additional functionality.
  • IQueryable

    Namespace: System.Linq

  • 支持 LINQ to SQL 表达式查询,作用于数据库级别
  • 示例: var wantedP = from p in Parts where p.CanOperate==true select p;

    List / List<T>

    Namespace: System.Collections / System.Collections.Generic;

  • List是 IList, ICollection, IEnumerable 的实现类。具有c#列表类所有操作能力。
  • 如果我们设计一个类并想把它暴露出去,最好暴露接口而不是具体的实现类。
  • Conclusion

  • 如果你只是简单的写一个功能类,此类不对外提供任何服务,那使用List没什么问题
  • 如果你的类要对外提供服务,最好对外暴露接口,让用户自己选择合适的实现类。
  •