ImmutableDictionary.Create メソッド

定義

オーバーロード

Create<TKey,TValue>()

空の変更できないディクショナリを作成します。

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

指定されたキーの比較子を使用する、空の変更できないディクショナリを作成します。

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

指定されたキーの比較子と値の比較子を使用する、空の変更できないディクショナリを作成します。

Create<TKey,TValue>()

ソース:
ImmutableDictionary.cs
ソース:
ImmutableDictionary.cs
ソース:
ImmutableDictionary.cs

空の変更できないディクショナリを作成します。

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

型パラメーター

TKey

ディクショナリによって格納されるキーの型。

TValue

ディクショナリによって格納される値の型。

戻り値

空の変更できないディクショナリ。

適用対象

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

ソース:
ImmutableDictionary.cs
ソース:
ImmutableDictionary.cs
ソース:
ImmutableDictionary.cs

指定されたキーの比較子を使用する、空の変更できないディクショナリを作成します。

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

型パラメーター

TKey

ディクショナリによって格納されるキーの型。

TValue

ディクショナリによって格納される値の型。

パラメーター

keyComparer
IEqualityComparer<TKey>

ディクショナリ内のキーが等しいかどうかを判定するために使用する実装。

戻り値

空の変更できないディクショナリ。

適用対象

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

ソース:
ImmutableDictionary.cs
ソース:
ImmutableDictionary.cs
ソース:
ImmutableDictionary.cs

指定されたキーの比較子と値の比較子を使用する、空の変更できないディクショナリを作成します。

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

型パラメーター

TKey

ディクショナリによって格納されるキーの型。

TValue

ディクショナリによって格納される値の型。

パラメーター

keyComparer
IEqualityComparer<TKey>

ディクショナリ内のキーが等しいかどうかを判定するために使用する実装。

valueComparer
IEqualityComparer<TValue>

ディクショナリ内の値が等しいかどうかを判定するために使用する実装。

戻り値

空の変更できないディクショナリ。

適用対象