C# Array Basics
C# Array Basics
C# Array
Arrays are using for store similar data types grouping as a single unit. We can access Array
elements by its numeric index. The array indexes start at zero. The default value of numeric array
elements are set to zero, and reference elements are set to null.
Integer Array
array[0] = 10;
array[1] = 20;
array[2] = 30;
array[3] = 40;
In the above code we declare an Integer Array of four elements and assign the value to array
index. That means we assign values to array index 0 - 4.
The following code shows how to add items in an Array using for loop.
Note that in the above code we did not specify the length of the array so the compiler will do it
for us.
String Array
The above C# code declare a string array of 7 strings and assign some values to it.
The above code declare and initialize a string array with values.
We can access the Arrays elements by providing its numerical index, the above statement we
access the second value from the week Array.
In the following program , we declare an Array "week" capable of seven String values and
assigns the seven values as days in a week . Next step is to retrieve the elements of the Array
using a for loop . For finding the end of an Array we used the Length function of Array Object.
Array.Length Property returned the total number of elements in all the dimensions of the Array.
An array can be resized with Array.Resize < T > Method , that means We make an array bigger
or smaller. Array.Resize < T > Method Changes the number of elements of a one-dimensional
array to the specified new size.
This method should be used with only one dimensional Array. This method allocates a new array
with the specified size, copies elements from the old array to the new one, and then replaces the
old array with the new one.
Resize Array
{
Console.WriteLine(element);
}
Converting String array to List
Array Sort
You can sort the arrays in ascending order as well as descending . We can use Array.Sort method
for sorts the elements in a one-dimensional array. Also we can use Array.Reverse method for
reverses the sequence of the elements in the entire one-dimensional Array.