Assembly: mscorlib (in mscorlib.dll)
Public Shared Function CreateInstance ( _ elementType As Type, _ length1 As Integer, _ length2 As Integer _ ) As Array
public static Array CreateInstance( Type elementType, int length1, int length2 )
public: static Array^ CreateInstance( Type^ elementType, int length1, int length2 )
static member CreateInstance : elementType:Type * length1:int * length2:int -> Array
Parameters
- elementType
- Type: System.Type
The Type of the Array to create.
- length1
- Type: System.Int32
The size of the first dimension of the Array to create.
- length2
- Type: System.Int32
The size of the second dimension of the Array to create.
Return Value
Type: System.ArrayA new two-dimensional Array of the specified Type with the specified length for each dimension, using zero-based indexing.
| Exception | Condition |
|---|---|
| ArgumentNullException |
elementType is null. |
| ArgumentException |
elementType is not a valid Type. |
| NotSupportedException |
elementType is not supported. For example, Void is not supported. -or- elementType is an open generic type. |
| ArgumentOutOfRangeException |
length1 is less than zero. -or- length2 is less than zero. |
Unlike most classes, Array provides the CreateInstance method, instead of public constructors, to allow for late bound access.
Reference-type elements are initialized to null. Value-type elements are initialized to zero.
This method is an O(n) operation, where n is the product of length1 and length2.
The following code example shows how to create and initialize a two-dimensional Array.
Imports System Imports Microsoft.VisualBasic Public Class SamplesArray Public Shared Sub Main() ' Creates and initializes a two-dimensional Array of type String. Dim my2DArray As Array = Array.CreateInstance(GetType(String), 2, 3) Dim i, j As Integer For i = my2DArray.GetLowerBound(0) To my2DArray.GetUpperBound(0) For j = my2DArray.GetLowerBound(1) To my2DArray.GetUpperBound(1) my2DArray.SetValue("abc" + i.ToString() + j.ToString(), i, j) Next j Next i ' Displays the values of the Array. Console.WriteLine("The two-dimensional Array contains the " _ + "following values:") PrintValues(my2DArray) End Sub Public Shared Sub PrintValues(myArr As Array) Dim myEnumerator As System.Collections.IEnumerator = _ myArr.GetEnumerator() Dim i As Integer = 0 Dim cols As Integer = myArr.GetLength(myArr.Rank - 1) While myEnumerator.MoveNext() If i < cols Then i += 1 Else Console.WriteLine() i = 1 End If Console.Write(ControlChars.Tab + "{0}", myEnumerator.Current) End While Console.WriteLine() End Sub End Class ' This code produces the following output. ' ' The two-dimensional Array contains the following values: ' abc00 abc01 abc02 ' abc10 abc11 abc12
using System; public class SamplesArray { public static void Main() { // Creates and initializes a two-dimensional Array of type String. Array my2DArray=Array.CreateInstance( typeof(String), 2, 3 ); for ( int i = my2DArray.GetLowerBound(0); i <= my2DArray.GetUpperBound(0); i++ ) for ( int j = my2DArray.GetLowerBound(1); j <= my2DArray.GetUpperBound(1); j++ ) my2DArray.SetValue( "abc" + i + j, i, j ); // Displays the values of the Array. Console.WriteLine( "The two-dimensional Array contains the following values:" ); PrintValues( my2DArray ); } public static void PrintValues( Array myArr ) { System.Collections.IEnumerator myEnumerator = myArr.GetEnumerator(); int i = 0; int cols = myArr.GetLength( myArr.Rank - 1 ); while ( myEnumerator.MoveNext() ) { if ( i < cols ) { i++; } else { Console.WriteLine(); i = 1; } Console.Write( "\t{0}", myEnumerator.Current ); } Console.WriteLine(); } } /* This code produces the following output. The two-dimensional Array contains the following values: abc00 abc01 abc02 abc10 abc11 abc12 */
using namespace System; void PrintValues( Array^ myArr ); void main() { // Creates and initializes a two-dimensional Array instance of type String. Array^ my2DArray = Array::CreateInstance( String::typeid, 2, 3 ); for ( int i = my2DArray->GetLowerBound( 0 ); i <= my2DArray->GetUpperBound( 0 ); i++ ) for ( int j = my2DArray->GetLowerBound( 1 ); j <= my2DArray->GetUpperBound( 1 ); j++ ) my2DArray->SetValue( String::Concat( "abc", i, j ), i, j ); // Displays the values of the Array. Console::WriteLine( "The two-dimensional Array instance contains the following values:" ); PrintValues( my2DArray ); } void PrintValues( Array^ myArr ) { System::Collections::IEnumerator^ myEnumerator = myArr->GetEnumerator(); int i = 0; int cols = myArr->GetLength( myArr->Rank - 1 ); while ( myEnumerator->MoveNext() ) { if ( i < cols ) { i++; } else { Console::WriteLine(); i = 1; } Console::Write( "\t{0}", myEnumerator->Current ); } Console::WriteLine(); } /* This code produces the following output. The two-dimensional Array instance contains the following values: abc00 abc01 abc02 abc10 abc11 abc12 */
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.