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
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.