ImmutableSortedDictionary.Create 메서드

정의

오버로드

Create<TKey,TValue>()

변경할 수 없는 정렬된 빈 사전을 만듭니다.

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

지정된 키 비교자를 사용하는 변경할 수 없는 정렬된 빈 사전을 만듭니다.

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

지정된 키 및 값 비교자를 사용하는 변경할 수 없는 정렬된 빈 사전을 만듭니다.

Create<TKey,TValue>()

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

변경할 수 없는 정렬된 빈 사전을 만듭니다.

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

형식 매개 변수

TKey

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

TValue

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

반환

변경할 수 없는 정렬된 빈 사전입니다.

적용 대상

Create<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> ^ Create(System::Collections::Generic::IComparer<TKey> ^ keyComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> Create<TKey,TValue> (System.Collections.Generic.IComparer<TKey> keyComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> Create<TKey,TValue> (System.Collections.Generic.IComparer<TKey>? keyComparer);
static member Create : System.Collections.Generic.IComparer<'Key> -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>
Public Function Create(Of TKey, TValue) (keyComparer As IComparer(Of TKey)) As ImmutableSortedDictionary(Of TKey, TValue)

형식 매개 변수

TKey

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

TValue

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

매개 변수

keyComparer
IComparer<TKey>

사전의 키와 동일한지 확인하는 데 사용할 구현입니다.

반환

변경할 수 없는 정렬된 빈 사전입니다.

적용 대상

Create<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> ^ Create(System::Collections::Generic::IComparer<TKey> ^ keyComparer, System::Collections::Generic::IEqualityComparer<TValue> ^ valueComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> Create<TKey,TValue> (System.Collections.Generic.IComparer<TKey> keyComparer, System.Collections.Generic.IEqualityComparer<TValue> valueComparer);
public static System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> Create<TKey,TValue> (System.Collections.Generic.IComparer<TKey>? keyComparer, System.Collections.Generic.IEqualityComparer<TValue>? valueComparer);
static member Create : System.Collections.Generic.IComparer<'Key> * System.Collections.Generic.IEqualityComparer<'Value> -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>
Public Function Create(Of TKey, TValue) (keyComparer As IComparer(Of TKey), valueComparer As IEqualityComparer(Of TValue)) As ImmutableSortedDictionary(Of TKey, TValue)

형식 매개 변수

TKey

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

TValue

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

매개 변수

keyComparer
IComparer<TKey>

사전의 키와 동일한지 확인하는 데 사용할 구현입니다.

valueComparer
IEqualityComparer<TValue>

사전의 값과 동일한지 확인하는 데 사용할 구현입니다.

반환

변경할 수 없는 정렬된 빈 사전입니다.

적용 대상