4 references to Insert
System.Windows.Forms (1)
System\Windows\Forms\AutoCompleteStringCollection.cs (1)
193void IList.Insert(int index, object? value) => Insert(index, (string)value!);
System.Windows.Forms.Tests (3)
System\Windows\Forms\AutoCompleteStringCollectionTests.cs (3)
141collection.Insert(1, s); 158collection.Insert(0, s); 170Assert.Throws<ArgumentOutOfRangeException>("index", () => collection.Insert(index, "value"));