Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

GC.AllocateArray<T>(Int32, Boolean) Method

Definition

Namespace:
System
Assemblies:
netstandard.dll, System.Runtime.dll
Source:
GC.CoreCLR.cs
Source:
GC.CoreCLR.cs
Source:
GC.CoreCLR.cs
Source:
GC.CoreCLR.cs
Source:
GC.CoreCLR.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Allocates an array.

public static T[] AllocateArray<T>(int length, bool pinned = false);
static member AllocateArray : int * bool -> 'T[]
Public Shared Function AllocateArray(Of T) (length As Integer, Optional pinned As Boolean = false) As T()

Type Parameters

T

Specifies the type of the array element.

Parameters

length
Int32

Specifies the length of the array.

pinned
Boolean

Specifies whether the allocated array must be pinned.

Returns

T[]

An array object.

Remarks

In .NET 7 and earlier versions: If pinned is set to true, T must not be a reference type or a type that contains object references.

Applies to


Feedback

Was this page helpful?