2 references to TryGetValue
System.Collections (1)
System\Collections\Generic\OrderedDictionary.cs (1)
921public bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value) => TryGetValue(key, out value, out _);
System.Text.Json (1)
System\Text\Json\Nodes\JsonObject.cs (1)
156return Dictionary.TryGetValue(propertyName, out jsonNode, out index);