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