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)
520
Add
(pair.Key, pair.Value);
527
Add
(pair.Key, pair.Value);
1196
void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item) =>
Add
(item.Key, item.Value);
1261
Add
(tkey, tvalue);
1338
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)
30
Dictionary.
Add
(propertyName, value);
225
dictionary.
Add
(jElementProperty.Name, node);