About 178,000 results
Open links in new tab
  1. Collections - C# reference | Microsoft Learn

    Feb 4, 2025 · Learn about collections in C#, which are used to work with groups of objects. Collections have different characteristics regarding adding and removing elements, modifying …

  2. Collections in C# - GeeksforGeeks

    Jul 11, 2025 · Collections standardize the way of which the objects are handled by your program. In other words, it contains a set of classes to contain elements in a generalized manner.

  3. How to Use Collections in C# – Lists, Arrays, Dictionaries, and More

    Jan 24, 2025 · Whether you're storing data in a fixed-size array, managing a dynamic list, working with first-in-first-out queues, last-in-first-out stacks, or key-value pair dictionaries, knowing …

  4. C# Collections - C# Tutorial

    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 …

  5. C# - Collections - Online Tutorials Library

    Collection classes are specialized classes for data storage and retrieval. These classes provide support for stacks, queues, lists, and hash tables. Most collection classes implement the same …

  6. C# Collections (With Examples) - Programiz

    Collections consist of classes using which we can flexibly work with a group of objects. In this tutorial, you will learn about C# Collections with the help of examples.

  7. Collections in C#

    Data manipulation includes adding, removing, finding, and inserting data in the collection. Collection types implement the following common functionality: .NET supports two types of …

  8. Collections and Data Structures - .NET | Microsoft Learn

    Oct 20, 2025 · Learn how to use collections and data structures in .NET. Use generic and non-generic collections in thread-safe operations.

  9. C# Generic & Non-generic Collections - TutorialsTeacher.com

    There are two types of collections available in C#: non-generic collections and generic collections. The System.Collections namespace contains the non-generic collection types and …

  10. C# Collections Explained: Lists, Dictionaries, and Queues

    Oct 16, 2025 · In this post, we’ll break down three of the most commonly used collection types in C#: List, Dictionary, and Queue. We’ll look at how they work, what problems they solve, and …