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

定義

オーバーロード

WithComparers(IEqualityComparer<TKey>)

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

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

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

WithComparers(IEqualityComparer<TKey>)

ソース:
ImmutableDictionary_2.cs
ソース:
ImmutableDictionary_2.cs
ソース:
ImmutableDictionary_2.cs

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

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

パラメーター

keyComparer
IEqualityComparer<TKey>

使用するキーの比較子。

戻り値

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

適用対象

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

ソース:
ImmutableDictionary_2.cs
ソース:
ImmutableDictionary_2.cs
ソース:
ImmutableDictionary_2.cs

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

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

パラメーター

keyComparer
IEqualityComparer<TKey>

使用するキーの比較子。

valueComparer
IEqualityComparer<TValue>

使用する値の比較子。

戻り値

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

適用対象