user471807
user471807

Reputation: 177

object collections with linq

What are the different collections available to store objects and which one's best to use when? IList, IEnumerate, IQueryable...

I'm new to .net

Thanks.

Upvotes: 1

Views: 80

Answers (1)

Pascal Qyy
Pascal Qyy

Reputation: 4502

You can find here the documentation for all the collections namespace :

http://msdn.microsoft.com/en-us/library/system.collections(v=VS.100).aspx

Upvotes: 2

Related Questions