ImmutableSortedDictionary.CreateBuilder 메서드

정의

오버로드

CreateBuilder<TKey,TValue>()

변경할 수 없는 정렬된 새 사전 작성기를 만듭니다.

CreateBuilder<TKey,TValue>(IComparer<TKey>)

변경할 수 없는 정렬된 새 사전 작성기를 만듭니다.

CreateBuilder<TKey,TValue>(IComparer<TKey>, IEqualityComparer<TValue>)

변경할 수 없는 정렬된 새 사전 작성기를 만듭니다.

CreateBuilder<TKey,TValue>()

Source:
ImmutableSortedDictionary.cs
Source:
ImmutableSortedDictionary.cs
Source:
ImmutableSortedDictionary.cs

변경할 수 없는 정렬된 새 사전 작성기를 만듭니다.

public:
generic <typename TKey, typename TValue>
 static System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue>::Builder ^ CreateBuilder();
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> ();
static member CreateBuilder : unit -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>.Builder
Public Function CreateBuilder(Of TKey, TValue) () As ImmutableSortedDictionary(Of TKey, TValue).Builder

형식 매개 변수

TKey

사전에 의해 저장되는 키의 형식입니다.

TValue

사전에 의해 저장되는 값의 형식입니다.

반환

변경할 수 없는 컬렉션 작성기입니다.

적용 대상

CreateBuilder<TKey,TValue>(IComparer<TKey>)

Source:
ImmutableSortedDictionary.cs
Source:
ImmutableSortedDictionary.cs
Source:
ImmutableSortedDictionary.cs

변경할 수 없는 정렬된 새 사전 작성기를 만듭니다.

public:
generic <typename TKey, typename TValue>
 static System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue>::Builder ^ CreateBuilder(System::Collections::Generic::IComparer<TKey> ^ keyComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> (System.Collections.Generic.IComparer<TKey> keyComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> (System.Collections.Generic.IComparer<TKey>? keyComparer);
static member CreateBuilder : System.Collections.Generic.IComparer<'Key> -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>.Builder
Public Function CreateBuilder(Of TKey, TValue) (keyComparer As IComparer(Of TKey)) As ImmutableSortedDictionary(Of TKey, TValue).Builder

형식 매개 변수

TKey

사전에 의해 저장되는 키의 형식입니다.

TValue

사전에 의해 저장되는 값의 형식입니다.

매개 변수

keyComparer
IComparer<TKey>

키 비교자입니다.

반환

변경할 수 없는 컬렉션 작성기입니다.

적용 대상

CreateBuilder<TKey,TValue>(IComparer<TKey>, IEqualityComparer<TValue>)

Source:
ImmutableSortedDictionary.cs
Source:
ImmutableSortedDictionary.cs
Source:
ImmutableSortedDictionary.cs

변경할 수 없는 정렬된 새 사전 작성기를 만듭니다.

public:
generic <typename TKey, typename TValue>
 static System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue>::Builder ^ CreateBuilder(System::Collections::Generic::IComparer<TKey> ^ keyComparer, System::Collections::Generic::IEqualityComparer<TValue> ^ valueComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> (System.Collections.Generic.IComparer<TKey> keyComparer, System.Collections.Generic.IEqualityComparer<TValue> valueComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> (System.Collections.Generic.IComparer<TKey>? keyComparer, System.Collections.Generic.IEqualityComparer<TValue>? valueComparer);
static member CreateBuilder : System.Collections.Generic.IComparer<'Key> * System.Collections.Generic.IEqualityComparer<'Value> -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>.Builder
Public Function CreateBuilder(Of TKey, TValue) (keyComparer As IComparer(Of TKey), valueComparer As IEqualityComparer(Of TValue)) As ImmutableSortedDictionary(Of TKey, TValue).Builder

형식 매개 변수

TKey

사전에 의해 저장되는 키의 형식입니다.

TValue

사전에 의해 저장되는 값의 형식입니다.

매개 변수

keyComparer
IComparer<TKey>

키 비교자입니다.

valueComparer
IEqualityComparer<TValue>

값 비교자입니다.

반환

변경할 수 없는 컬렉션 작성기입니다.

적용 대상