KeyValuePair.Create<TKey,TValue>(TKey, TValue) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用提供的值创建新的键/值对实例。
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> 的值。
返回
包含提供的参数作为值的键/值对。