Initializes a new instance of the Array class.
Creates a three-dimensional Array of the specified Type and dimension lengths, with 0-based indexing.
[Visual Basic] Overloads Public Shared Function CreateInstance(Type, Integer, Integer, Integer) As Array
[C#] public static Array CreateInstance(Type, int, int, int);
[C++] public: static Array* CreateInstance(Type*, int, int, int);
[JScript] public static function CreateInstance(Type, int, int, int) : Array;
Creates a multidimensional Array of the specified Type and dimension lengths, with 0-based indexing.
[Visual Basic] Overloads Public Shared Function CreateInstance(Type, Integer()) As Array
[C#] public static Array CreateInstance(Type, int[]);
[C++] public: static Array* CreateInstance(Type*, int[]);
[JScript] public static function CreateInstance(Type, int[]) : Array;
Creates a multidimensional Array of the specified Type and dimension lengths, with the specified lower bounds.
[Visual Basic] Overloads Public Shared Function CreateInstance(Type, Integer(), Integer()) As Array
[C#] public static Array CreateInstance(Type, int[], int[]);
[C++] public: static Array* CreateInstance(Type*, int[], int[]);
[JScript] public static function CreateInstance(Type, int[], int[]) : Array;
Creates a one-dimensional Array of the specified Type and length, with 0-based indexing.
[Visual Basic] Overloads Public Shared Function CreateInstance(Type, Integer) As Array
[C#] public static Array CreateInstance(Type, int);
[C++] public: static Array* CreateInstance(Type*, int);
[JScript] public static function CreateInstance(Type, int) : Array;
Creates a two-dimensional Array of the specified Type and dimension lengths, with 0-based indexing.
[Visual Basic] Overloads Public Shared Function CreateInstance(Type, Integer, Integer) As Array
[C#] public static Array CreateInstance(Type, int, int);
[C++] public: static Array* CreateInstance(Type*, int, int);
[JScript] public static function CreateInstance(Type, int, int) : Array;