About 387,000 results
Open links in new tab
  1. Array Class (System) | Microsoft Learn

    Provides methods for creating, manipulating, searching, and sorting arrays, thereby serving as the base class for all arrays in the common language runtime.

  2. C# Arrays - W3Schools

    Create an Array Arrays are used to store multiple values in a single variable, instead of declaring separate variables for each value. To declare an array, define the variable type with square …

  3. Arrays in C# - GeeksforGeeks

    Sep 9, 2025 · An array is a linear data structure that stores a fixed-size sequence of elements of the same data type in contiguous memory locations. It allows accessing elements using an …

  4. C# Arrays (With Examples) - Programiz

    An array is a collection of similar types of data. In this tutorial, we will learn about the C# array with the help of examples.

  5. Essential C#: Arrays

    Oct 12, 2025 · Arrays provide a means of declaring a collection of data items that are of the same type using a single variable. Each item within the array is uniquely designated using an integer …

  6. C# - Array Examples - Dot Net Perls

    Aug 24, 2025 · Array An array in C# is a region of memory that stores a certain number of elements—each element has the same type. Arrays are harder to use than Lists, but can be …

  7. C# array - working with arrays in C# - ZetCode

    May 7, 2025 · The Array class in C# provides built-in methods to manipulate arrays efficiently, including operations such as sorting, searching, and modifying elements. int[] ages; string[] …

  8. Learn C#: Learn C#: Arrays Cheatsheet | Codecademy

    In C#, an array is a structure representing a fixed length ordered collection of values or objects with the same type. Arrays make it easier to organize and operate on large amounts of data. …