SortedSet<T>.TryGetValue(T, T) Método
Definição
Pesquisa um determinado valor no conjunto e retorna o valor igual que for encontrado, se houver.Searches the set for a given value and returns the equal value it finds, if any.
public:
bool TryGetValue(T equalValue, [Runtime::InteropServices::Out] T % actualValue);
public bool TryGetValue (T equalValue, out T actualValue);
member this.TryGetValue : 'T * 'T -> bool
Public Function TryGetValue (equalValue As T, ByRef actualValue As T) As Boolean
Parâmetros
- equalValue
- T
O valor a ser procurado.The value to search for.
- actualValue
- T
O valor do conjunto encontrado pela pesquisa ou o valor padrão de T quando a pesquisa não gera correspondência.The value from the set that the search found, or the default value of T when the search yielded no match.
Retornos
Um valor que indica se a pesquisa foi bem-sucedida.A value indicating whether the search was successful.
Comentários
Isso pode ser útil quando você deseja reutilizar uma referência armazenada anteriormente em vez de uma criada recentemente (para que mais compartilhamento de referências possa ocorrer) ou pesquisar um valor que tenha dados mais completos do que o valor que você tem atualmente, embora suas funções de comparador indiquem que são iguais.This can be useful when you want to reuse a previously stored reference instead of a newly constructed one (so that more sharing of references can occur) or to look up a value that has more complete data than the value you currently have, although their comparer functions indicate they are equal.