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)
521Add(pair.Key, pair.Value); 528Add(pair.Key, pair.Value); 1188void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item) => Add(item.Key, item.Value); 1253Add(tkey, tvalue); 1330Add(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);