About 219,000 results
Open links in new tab
  1. List<T> Class (System.Collections.Generic) | Microsoft Learn

    Represents a strongly typed list of objects that can be accessed by index. Provides methods to search, sort, and manipulate lists.

  2. C# List (with Examples) - Programiz

    A list is a collection of strongly typed objects that can be accessed using an index. In this tutorial, you will learn about the C# list with the help of examples.

  3. C# List<T> Collection - TutorialsTeacher.com

    The List<T> is a generic collection, so you need to specify a type parameter for the type of data it can store. The following example shows how to create list and add elements.

  4. C# List Tutorial - Everything You Need To Learn About List In C#

    This tutorial teaches how to work with lists in C# using the C# List class to add, find, sort, reverse, and search items in a collection of objects using List class methods and properties.

  5. List Class in C# - GeeksforGeeks

    Sep 12, 2025 · Provides built-in methods to add, remove, search, sort and manipulate elements. Not sorted by default, elements are accessed using a zero-based index. Capacity grows …

  6. C# - List Examples - Dot Net Perls

    Aug 10, 2025 · When using List, we must specify a type parameter—types like int or string are commonly used. Lists are used in nearly all larger C# programs. Here we create two separate …

  7. C# List - working with a List collection in C# - ZetCode

    May 14, 2025 · Learn how to work with the List collection in C#. This tutorial covers List manipulation, indexing, sorting, searching, and common operations for handling data efficiently …

  8. C# List<T> - C# Tutorial

    In this tutorial, you'll learn how to use the C# List class to manipulate a list of elements effectively.

  9. C Sharp List - W3schools

    To store and to fetch the elements, the C# List<T> class is used which is found in the System.Collections.Generic namespace. The C# List<T> class can also store duplicate elements.

  10. Understanding Lists in C# with Examples - C# Station

    Sep 8, 2024 · To use a List in C#, you need to include this line at the top of your code: This tells C# that we want to use lists and other collection types. To create a List, you need to define the …