Implemented interface member:
4 references to Insert
System.Windows.Forms.Tests (4)
System\Windows\Forms\DataGridViewComboBoxCell.ObjectCollectionTests.cs (4)
285_collection.Insert(0, item2); 305Action actionNegativeIndex = () => _collection.Insert(-1, "Item"); 306Action actionOutOfRangeIndex = () => _collection.Insert(1, "Item"); 307Action actionNullItem = () => _collection.Insert(0, null!);