KeyValuePair.Create<TKey,TValue>(TKey, TValue) メソッド

定義

指定された値を使用して、新しいキーと値ペアのインスタンスを作成します。

public:
generic <typename TKey, typename TValue>
 static System::Collections::Generic::KeyValuePair<TKey, TValue> Create(TKey key, TValue value);
public static System.Collections.Generic.KeyValuePair<TKey,TValue> Create<TKey,TValue> (TKey key, TValue value);
static member Create : 'Key * 'Value -> System.Collections.Generic.KeyValuePair<'Key, 'Value>
Public Shared Function Create(Of TKey, TValue) (key As TKey, value As TValue) As KeyValuePair(Of TKey, TValue)

型パラメーター

TKey

キーの型。

TValue

値の型。

パラメーター

key
TKey

作成される新しい KeyValuePair<TKey,TValue> のキー。

value
TValue

作成される新しい KeyValuePair<TKey,TValue> の値。

戻り値

指定された引数を値として含むキーと値のペア。

適用対象