KeyValuePair.Create<TKey,TValue>(TKey, TValue) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Cria uma instância de par chave/valor usando os valores fornecidos.
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)
Parâmetros de tipo
- TKey
Tipo da chave.
- TValue
Tipo do valor.
Parâmetros
- key
- TKey
A chave do novo KeyValuePair<TKey,TValue> a ser criado.
- value
- TValue
O valor do novo KeyValuePair<TKey,TValue> a ser criado.
Retornos
Um par chave/valor contendo os argumentos fornecidos como valores.
Aplica-se a
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.