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> 的值。

返回

包含提供的参数作为值的键/值对。

适用于