关于c#:IList和ICollection之间有什么区别?

What's the difference between IList and ICollection?

本问题已经有最佳答案,请猛点这里访问。

有人能详细描述一下我和我的回忆吗?而且,我们何时何地使用iList或iCollection


ICollectionIEnumerable另外,它还提供了添加和清除元素的方法和清理收集的方法。它还提供了处理元素在收集中的定位的方法。It also provides an object indexer to allow the user to access the collection with square brackets like:

1
myList[elementIndex]

MGX1〔0〕

Reference:Claudio Bernasconi's article about Ilist and IColection