IDictionary<TKey,TValue>.TryGetValue(TKey, TValue) Metoda

Definicja

Pobiera wartość skojarzoną z określonym kluczem.

public:
 bool TryGetValue(TKey key, [Runtime::InteropServices::Out] TValue % value);
public bool TryGetValue (TKey key, out TValue value);
abstract member TryGetValue : 'Key * 'Value -> bool
Public Function TryGetValue (key As TKey, ByRef value As TValue) As Boolean

Parametry

key
TKey

Klucz, którego wartość ma być pobierana.

value
TValue

Gdy ta metoda zwróci wartość skojarzona z określonym kluczem, jeśli zostanie znaleziony klucz; w przeciwnym razie wartość domyślna typu parametru value . Ten parametr jest przekazywany jako niezainicjowany.

Zwraca

true jeśli obiekt implementujący IDictionary<TKey,TValue> zawiera element z określonym kluczem; w przeciwnym razie false.

Wyjątki

key to null.

Przykłady

W przykładzie pokazano, jak używać metody do pobierania TryGetValue wartości. Jeśli program często próbuje wartości kluczy, które nie znajdują się w słowniku, TryGetValue metoda może być wydajniejsza niż użycie Item[] właściwości (indeksator w języku C#), która zgłasza wyjątki podczas próby pobrania nieistniejących kluczy.

Ten kod jest częścią większego przykładu, który można skompilować i wykonać. Zobacz: .

// When a program often has to try keys that turn out not to
// be in the dictionary, TryGetValue can be a more efficient
// way to retrieve values.
String^ value = "";
if (openWith->TryGetValue("tif", value))
{
    Console::WriteLine("For key = \"tif\", value = {0}.", value);
}
else
{
    Console::WriteLine("Key = \"tif\" is not found.");
}
// When a program often has to try keys that turn out not to
// be in the dictionary, TryGetValue can be a more efficient
// way to retrieve values.
string value = "";
if (openWith.TryGetValue("tif", out value))
{
    Console.WriteLine("For key = \"tif\", value = {0}.", value);
}
else
{
    Console.WriteLine("Key = \"tif\" is not found.");
}
' When a program often has to try keys that turn out not to
' be in the dictionary, TryGetValue can be a more efficient 
' way to retrieve values.
Dim value As String = ""
If openWith.TryGetValue("tif", value) Then
    Console.WriteLine("For key = ""tif"", value = {0}.", value)
Else
    Console.WriteLine("Key = ""tif"" is not found.")
End If
// The indexer throws an exception if the requested key is
// not in the dictionary.
try
{
    Console::WriteLine("For key = \"tif\", value = {0}.",
        openWith["tif"]);
}
catch (KeyNotFoundException^)
{
    Console::WriteLine("Key = \"tif\" is not found.");
}
// The indexer throws an exception if the requested key is
// not in the dictionary.
try
{
    Console.WriteLine("For key = \"tif\", value = {0}.",
        openWith["tif"]);
}
catch (KeyNotFoundException)
{
    Console.WriteLine("Key = \"tif\" is not found.");
}
' The default Item property throws an exception if the requested
' key is not in the dictionary.
Try
    Console.WriteLine("For key = ""tif"", value = {0}.", _
        openWith("tif"))
Catch 
    Console.WriteLine("Key = ""tif"" is not found.")
End Try

Uwagi

Ta metoda łączy funkcje ContainsKey metody i Item[] właściwości .

Jeśli klucz nie zostanie znaleziony, value parametr pobiera odpowiednią wartość domyślną dla typu TValue, na przykład zero (0) dla typów całkowitych, false dla typów logicznych i null dla typów referencyjnych.

Dotyczy

Zobacz też