C# data के समूहों को store करने के लिए System.Collections.Generic में collection types का एक समृद्ध सेट प्रदान करता है। सबसे सामान्य हैं List<T> (dynamic array), Dictionary<K,V> (key-value map), और HashSet<T> (unique set)। सही वाला चुनना स्पष्टता और performance के लिए मायने रखता है।
