2 references to TryGetValue
System.Collections (1)
System\Collections\Generic\OrderedDictionary.cs (1)
921
public 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)
156
return Dictionary.
TryGetValue
(propertyName, out jsonNode, out index);