다음을 통해 공유


ImmutableArray.CreateBuilder 메서드

정의

오버로드

CreateBuilder<T>()

새 메모리를 할당하지 않고 ImmutableArray로 변환할 수 있는 변경 가능한 배열을 만듭니다.

CreateBuilder<T>(Int32)

새 메모리를 할당하지 않고 ImmutableArray로 변환할 수 있는 변경 가능한 배열을 만듭니다.

CreateBuilder<T>()

Source:
ImmutableArray.cs
Source:
ImmutableArray.cs
Source:
ImmutableArray.cs

새 메모리를 할당하지 않고 ImmutableArray로 변환할 수 있는 변경 가능한 배열을 만듭니다.

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableArray<T>::Builder ^ CreateBuilder();
public static System.Collections.Immutable.ImmutableArray<T>.Builder CreateBuilder<T> ();
static member CreateBuilder : unit -> System.Collections.Immutable.ImmutableArray<'T>.Builder
Public Function CreateBuilder(Of T) () As ImmutableArray(Of T).Builder

형식 매개 변수

T

작성기에 저장된 요소의 형식입니다.

반환

변경할 수 없는 배열로 효율적으로 변환할 수 있는 지정된 형식의 변경 가능한 배열입니다.

적용 대상

CreateBuilder<T>(Int32)

Source:
ImmutableArray.cs
Source:
ImmutableArray.cs
Source:
ImmutableArray.cs

새 메모리를 할당하지 않고 ImmutableArray로 변환할 수 있는 변경 가능한 배열을 만듭니다.

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableArray<T>::Builder ^ CreateBuilder(int initialCapacity);
public static System.Collections.Immutable.ImmutableArray<T>.Builder CreateBuilder<T> (int initialCapacity);
static member CreateBuilder : int -> System.Collections.Immutable.ImmutableArray<'T>.Builder
Public Function CreateBuilder(Of T) (initialCapacity As Integer) As ImmutableArray(Of T).Builder

형식 매개 변수

T

작성기에 저장된 요소의 형식입니다.

매개 변수

initialCapacity
Int32

작성기의 초기 용량입니다.

반환

변경할 수 없는 배열로 효율적으로 변환할 수 있는 지정된 형식의 변경 가능한 배열입니다.

적용 대상