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
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.