ReadOnlyDictionaryAdapter.TryGetValue method

Attempts to get the value associated with the specified string key.

public bool TryGetValue(string key, out object? value)
parameter description
key The string key whose value to get.
value When this method returns, contains the value associated with the specified key, if the key is found; otherwise, null.

Return Value

true if the dictionary contains an element with the specified key; otherwise, false.

See Also