Collections in C#
DevSniper
159 Views
In C#, collection is a group of objects . with the help of collection user can perform various operation on objects like store, delete, update , retrieve, search, sort etc.
Types of Collections in C#
1. System.Collections.Generic classes
2. System.Collections classes (Now deprecated)
3. System.Collections.Concurrent Classes
1. System.Collections.Generic classes
2. System.Collections classes
ArrayList
Stack
Queue
Hashtable
3. System.Collections.Concurrent classes
BlockingCollection
ConcurrentBag
ConcurrentStack
ConcurrentQueue
ConcurrentDictionary
Partitioner
OrderablePartitioner