Collections in C#
Kamlesh Bhor
|
01 Jul 2025
|
32 views
This article provides introduction of Collections in C# language with examples. Collection is a class used to store set of values. If class contains indexer then it is called as collection. To overcome the drawbacks of array, Collections are used. Every collection class implements the IEnumerable interface so values from the collection can be accessed using a foreach loop.