In C#, an array index starts at zero. That means, first item of an array will be stored at 0th position. The position of the last item on an array will total number of items - 1.
In C#, arrays can be declared as fixed length or dynamic
we describe the Array in the two parts;-
Single Dimension Arrays
Multi Dimension Arrays
