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