Implemented interface member:
method
Add
System.Collections.Generic.IDictionary<TKey, TValue>.Add(TKey, TValue)
8 references to Add
System.Collections (5)
System\Collections\Generic\OrderedDictionary.cs (5)
506Add(pair.Key, pair.Value); 513Add(pair.Key, pair.Value); 1163void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item) => Add(item.Key, item.Value); 1228Add(tkey, tvalue); 1305Add(pair.Key, pair.Value);
System.Text.Json (3)
System\Text\Json\Nodes\JsonObject.cs (1)
43dictionary.Add(node.Key, node.Value);
System\Text\Json\Nodes\JsonObject.IDictionary.cs (2)
33Dictionary.Add(propertyName, value); 237dictionary.Add(jElementProperty.Name, node);