Reading up here, I undestand why it is not IList<T>. But why IList at all? It makes no sense to add to it, so it should be just an IEnumerable, or if you really want an indexer (no reason why), use a ReadOnlyCollection.
| |||
|
feedback
|
|
Take a look at It has So the design is based on Indexable collections, I assume this is convenient for eg Listboxes. | |||
|
feedback
|
|
Indexing is desirable for list virtualisation scenarios.
| |||
|
feedback
|
|
I think that in case of On MSDN webpage you can find the following recommendation:
| |||
|
feedback
|