Skip to main content

TryGetValue Method

Gets the value associated with the specified key.

Definition

Namespace: Avalonia.Collections
Assembly: Avalonia.Base (in Avalonia.Base.dll)

public bool TryGetValue(
TKey key,
out TValue value
)

Parameters

  TKey
The key whose value to get.
  TValue
When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.

Return Value

Boolean
true if the object that implements IDictionary(TKey, TValue) contains an element with the specified key; otherwise, false.

Implements

IDictionary(TKey, TValue).TryGetValue(TKey, TValue)
IReadOnlyDictionary(TKey, TValue).TryGetValue(TKey, TValue)

Exceptions

ArgumentNullExceptionkey is null.

See Also

Reference

AvaloniaDictionary(TKey, TValue) Class
Avalonia.Collections Namespace