4 references to IndexOf
System.Windows.Forms (1)
System\Windows\Forms\Controls\ListView\ListView.CheckedListViewItemCollection.cs (1)
282return IndexOf(listViewItem);
System.Windows.Forms.Tests (3)
System\Windows\Forms\ListView.CheckedListViewItemCollectionTests.cs (3)
263_collection.IndexOf(item2).Should().Be(1); 273_collection.IndexOf(item).Should().Be(-1); 281Action act = () => _collection.IndexOf(new ListViewItem());