3 references to Insert
System.Collections (2)
System\Collections\Generic\OrderedDictionary.cs (2)
1185
void IList<KeyValuePair<TKey, TValue>>.Insert(int index, KeyValuePair<TKey, TValue> item) =>
Insert
(index, item.Key, item.Value);
1359
Insert
(index, pair.Key, pair.Value);
System.Text.Json (1)
System\Text\Json\Nodes\JsonObject.IList.cs (1)
80
Dictionary.
Insert
(index, propertyName, value);