Implemented interface members:
method
TryGetValue
System.Collections.Generic.IReadOnlyDictionary<TKey, TValue>.TryGetValue(TKey, out TValue)
method
TryGetValue
System.Collections.Generic.IDictionary<TKey, TValue>.TryGetValue(TKey, out TValue)
8 references to TryGetValue
System.Collections (5)
System\Collections\Generic\OrderedDictionary.cs (5)
314
if (key is TKey tkey &&
TryGetValue
(tkey, out TValue? value))
369
if (!
TryGetValue
(key, out TValue? value))
1196
TryGetValue
(item.Key, out TValue? value) &&
1219
TryGetValue
(item.Key, out TValue? value) &&
1337
TryGetValue
(pair.Key, out TValue? v) &&
System.Text.Json (3)
System\Text\Json\Nodes\JsonObject.cs (2)
128
return Dictionary.
TryGetValue
(propertyName, out jsonNode);
190
otherDict.
TryGetValue
(item.Key, out JsonNode? jsonNode);
System\Text\Json\Nodes\JsonObject.IDictionary.cs (1)
203
return Dictionary.
TryGetValue
(propertyName, out jsonNode);