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