8Collections
OVERVIEW
Chapter 6, “Arrays,” covers arrays and the interfaces implemented by the Array
class. The size of arrays is fixed. If the number of elements is dynamic, you should use a collection class instead of an array.
List<T>
is a collection class that can be compared to arrays, but there are also other kinds of collections: queues, stacks, linked lists, dictionaries, and sets. The other collection classes have partly different APIs to access the elements in the collection and often a different internal structure for how the items are stored in memory. This chapter covers all of these collection classes and their differences, including performance differences.
COLLECTION INTERFACES AND TYPES
Most collection classes are in ...
Get Professional C# and .NET, 2021st Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.