3 references to TryGetValue
System.Collections (2)
System\Collections\Generic\OrderedDictionary.cs (2)
916public bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value) => TryGetValue(key, out value, out _); 1223if (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)
156return Dictionary.TryGetValue(propertyName, out jsonNode, out index);