ImmutableSortedDictionary<TKey,TValue>.WithComparers メソッド

定義

オーバーロード

WithComparers(IComparer<TKey>)

指定されたキーの比較子を使用する、変更できない並べ替えられたディクショナリのインスタンスを取得します。

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

指定されたキーと値の比較子を使用する、変更できない並べ替えられたディクショナリのインスタンスを取得します。

WithComparers(IComparer<TKey>)

ソース:
ImmutableSortedDictionary_2.cs
ソース:
ImmutableSortedDictionary_2.cs
ソース:
ImmutableSortedDictionary_2.cs

指定されたキーの比較子を使用する、変更できない並べ替えられたディクショナリのインスタンスを取得します。

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

パラメーター

keyComparer
IComparer<TKey>

使用するキーの比較子。

戻り値

指定された比較子を使用する、変更できないディクショナリのインスタンス。

適用対象

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

ソース:
ImmutableSortedDictionary_2.cs
ソース:
ImmutableSortedDictionary_2.cs
ソース:
ImmutableSortedDictionary_2.cs

指定されたキーと値の比較子を使用する、変更できない並べ替えられたディクショナリのインスタンスを取得します。

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

パラメーター

keyComparer
IComparer<TKey>

使用するキーの比較子。

valueComparer
IEqualityComparer<TValue>

使用する値の比較子。

戻り値

指定された比較子を使用する、変更できないディクショナリのインスタンス。

適用対象