Search notes:

System.Array (class)

System.Array is the base class for all arrays in the common language runtime. However, developers should generally not derive types from System.Array.
System.Array implements the System.Collections.IList interface which makes an Array a collection although Array is not in the System.Collections namespace.
By default, the first index of the elements is zero, but it can be set to other values. If the array has multiple dimensions, each dimension can have its own starting index.
The capacity of an Array is fixed (thus, the property IsFixedSize is always true).

See also

System.Collections.ArrayList
The PowerShell type accelerator for System.Array is [array].

Index