KeyValuePair.Create<TKey,TValue>(TKey, TValue) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new key/value pair instance using provided values.
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)
Type Parameters
- TKey
The type of the key.
- TValue
The type of the value.
Parameters
- key
- TKey
The key of the new KeyValuePair<TKey,TValue> to be created.
- value
- TValue
The value of the new KeyValuePair<TKey,TValue> to be created.
Returns
A key/value pair containing the provided arguments as values.
Applies to
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.