C# Collections

This C# Collections series will teach you how to effectively utilize a comprehensive set of collection classes including lists, dictionaries, sets, queues, as well as concurrent and immutable collections.

Section 1. Basic C# Collections

  • List<T> – learns how to manage a dynamic-size collection of elements.
  • Dictionary<T> – shows you how to use Dictionary to represent a collection of key-value pairs. The dictionary provides an efficient way to store, retrieve, and manipulate data based on a unique key associated with each value.
  • Stack<T> – learns how to use the Stack<T> to manage a collection of elements in the last-in, first-out (LIFO) order.
  • Queue<T> – guides you on how to use the Queue<T> class to manage a collection of elements in the first-in, first-out (FIFO) order.
Was this tutorial helpful ?