3 references to TryAdd
System.Collections (1)
System\Collections\Generic\OrderedDictionary.cs (1)
496public bool TryAdd(TKey key, TValue value) => TryAdd(key, value, out _);
System.Text.Json (2)
System\Text\Json\Nodes\JsonObject.cs (1)
271!dict.TryAdd(propertyName, value, out int index)
System\Text\Json\Nodes\JsonObject.IDictionary.cs (1)
65bool success = Dictionary.TryAdd(propertyName, value, out index);