Array in C# | C# Array | | Array in C# with Example | C# Array with Example

Array is such type of collection that have the capability to stores a fixed-sized elements of the same data type. But have the difference with mixed data types like Array List that can store mixed data types. In Array you can store multiple values of the same data type for example you can store multiple values of int data type of same variable and similarly In array you can also access multiple values of the same type under a single variable name. The below we defined how you declare, initialize, and use arrays in C#: