C# get length of array code example
Example 1: c# length of array
// declares a 1D Array of string.
string[] weekDays;
// allocating memory for days.
weekDays = new string[] {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
// Display length of array.
Console.Write(weekDays.Length);
Example 2: length of arr c#
string[] arr = {"foo", "bar"}
Console.WriteLine(arr.Length);
// >> 2
Example 3: how to declare an array lenght in c#
public int[] number = new int[2 /* the number here declares the lenght, not the index*/ ];
int[1 /*this number here declares the index*/] = 69;
Example 4: c# array lenght
int arraylenght = YourArray.Length;