C# Arrays You can store multiple variables of the same type in an array data structure. You declare an array by specifying the type of its elements. If you want the array to store elements of any type, you can specify object as its type. Each element in the array is identified by an index, which is an integer that starts at 0 for the first element and increases by 1 for each subsequent element. ..