3 references to TryGetValue
System.Collections (2)
System\Collections\Generic\OrderedDictionary.cs (2)
916
public bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value) =>
TryGetValue
(key, out value, out _);
1223
if (
TryGetValue
(item.Key, out TValue? value, out int index) && EqualityComparer<TValue>.Default.Equals(value, item.Value))
System.Text.Json (1)
System\Text\Json\Nodes\JsonObject.cs (1)
156
return Dictionary.
TryGetValue
(propertyName, out jsonNode, out index);