About 134,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. 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 …

  4. 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 …

  5. Collections in C#

    Learn about collections in C#, including commonly used collection types such as lists, queues, stacks, and dictionaries. This tutorial covers the basics of collections, how to use them, and …

  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. 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 …

  8. C# - Collections - Online Tutorials Library

    Collection classes serve various purposes, such as allocating memory dynamically to elements and accessing a list of items on the basis of an index etc. These classes create collections of …

  9. Collections - C# CheatSheet

    These collections allow you to specify the type you want to store using a generic type parameter (which is safer, faster, and more efficient). All collections implement the ICollection interface; …

  10. Collections in C# - A Brief Introduction - Dot Net Tutorials

    The collections in C# are classes that represent a group of objects. With the help of C# Collections, we can perform different types of operations on objects such as Store, Update, …