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)
521
Add
(pair.Key, pair.Value);
528
Add
(pair.Key, pair.Value);
1188
void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item) =>
Add
(item.Key, item.Value);
1253
Add
(tkey, tvalue);
1330
Add
(pair.Key, pair.Value);
System.Text.Json (3)
System\Text\Json\Nodes\JsonObject.cs (1)
43
dictionary.
Add
(node.Key, node.Value);
System\Text\Json\Nodes\JsonObject.IDictionary.cs (2)
33
Dictionary.
Add
(propertyName, value);
237
dictionary.
Add
(jElementProperty.Name, node);