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)
314if (key is TKey tkey && TryGetValue(tkey, out TValue? value)) 369if (!TryGetValue(key, out TValue? value)) 1171TryGetValue(item.Key, out TValue? value) && 1194TryGetValue(item.Key, out TValue? value) && 1312TryGetValue(pair.Key, out TValue? v) &&
System.Text.Json (3)
System\Text\Json\Nodes\JsonObject.cs (2)
128return Dictionary.TryGetValue(propertyName, out jsonNode); 190otherDict.TryGetValue(item.Key, out JsonNode? jsonNode);
System\Text\Json\Nodes\JsonObject.IDictionary.cs (1)
203return Dictionary.TryGetValue(propertyName, out jsonNode);