ImmutableDictionary.CreateBuilder メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
CreateBuilder<TKey,TValue>() |
新しい変更できないディクショナリ ビルダーを作成します。 |
CreateBuilder<TKey,TValue>(IEqualityComparer<TKey>) |
新しい変更できないディクショナリ ビルダーを作成します。 |
CreateBuilder<TKey,TValue>(IEqualityComparer<TKey>, IEqualityComparer<TValue>) |
新しい変更できないディクショナリ ビルダーを作成します。 |
CreateBuilder<TKey,TValue>()
新しい変更できないディクショナリ ビルダーを作成します。
public:
generic <typename TKey, typename TValue>
static System::Collections::Immutable::ImmutableDictionary<TKey, TValue>::Builder ^ CreateBuilder();
public static System.Collections.Immutable.ImmutableDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> ();
static member CreateBuilder : unit -> System.Collections.Immutable.ImmutableDictionary<'Key, 'Value>.Builder
Public Function CreateBuilder(Of TKey, TValue) () As ImmutableDictionary(Of TKey, TValue).Builder
型パラメーター
- TKey
ディクショナリによって格納されるキーの型。
- TValue
ディクショナリによって格納される値の型。
戻り値
新しいビルダー。
適用対象
CreateBuilder<TKey,TValue>(IEqualityComparer<TKey>)
新しい変更できないディクショナリ ビルダーを作成します。
public:
generic <typename TKey, typename TValue>
static System::Collections::Immutable::ImmutableDictionary<TKey, TValue>::Builder ^ CreateBuilder(System::Collections::Generic::IEqualityComparer<TKey> ^ keyComparer);
public static System.Collections.Immutable.ImmutableDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> (System.Collections.Generic.IEqualityComparer<TKey> keyComparer);
public static System.Collections.Immutable.ImmutableDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> (System.Collections.Generic.IEqualityComparer<TKey>? keyComparer);
static member CreateBuilder : System.Collections.Generic.IEqualityComparer<'Key> -> System.Collections.Immutable.ImmutableDictionary<'Key, 'Value>.Builder
Public Function CreateBuilder(Of TKey, TValue) (keyComparer As IEqualityComparer(Of TKey)) As ImmutableDictionary(Of TKey, TValue).Builder
型パラメーター
- TKey
ディクショナリによって格納されるキーの型。
- TValue
ディクショナリによって格納される値の型。
パラメーター
- keyComparer
- IEqualityComparer<TKey>
キーの比較子。
戻り値
新しいビルダー。
適用対象
CreateBuilder<TKey,TValue>(IEqualityComparer<TKey>, IEqualityComparer<TValue>)
新しい変更できないディクショナリ ビルダーを作成します。
public:
generic <typename TKey, typename TValue>
static System::Collections::Immutable::ImmutableDictionary<TKey, TValue>::Builder ^ CreateBuilder(System::Collections::Generic::IEqualityComparer<TKey> ^ keyComparer, System::Collections::Generic::IEqualityComparer<TValue> ^ valueComparer);
public static System.Collections.Immutable.ImmutableDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> (System.Collections.Generic.IEqualityComparer<TKey> keyComparer, System.Collections.Generic.IEqualityComparer<TValue> valueComparer);
public static System.Collections.Immutable.ImmutableDictionary<TKey,TValue>.Builder CreateBuilder<TKey,TValue> (System.Collections.Generic.IEqualityComparer<TKey>? keyComparer, System.Collections.Generic.IEqualityComparer<TValue>? valueComparer);
static member CreateBuilder : System.Collections.Generic.IEqualityComparer<'Key> * System.Collections.Generic.IEqualityComparer<'Value> -> System.Collections.Immutable.ImmutableDictionary<'Key, 'Value>.Builder
Public Function CreateBuilder(Of TKey, TValue) (keyComparer As IEqualityComparer(Of TKey), valueComparer As IEqualityComparer(Of TValue)) As ImmutableDictionary(Of TKey, TValue).Builder
型パラメーター
- TKey
ディクショナリによって格納されるキーの型。
- TValue
ディクショナリによって格納される値の型。
パラメーター
- keyComparer
- IEqualityComparer<TKey>
キーの比較子。
- valueComparer
- IEqualityComparer<TValue>
値の比較子。
戻り値
新しいビルダー。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET