6 references to IndexOfKey
System.Windows.Forms (2)
System\Windows\Forms\Controls\ListView\ListView.CheckedListViewItemCollection.cs (2)
115
int index =
IndexOfKey
(key);
203
return IsValidIndex(
IndexOfKey
(key));
System.Windows.Forms.Tests (4)
System\Windows\Forms\ListView.CheckedListViewItemCollectionTests.cs (4)
294
_collection.
IndexOfKey
("bar").Should().Be(1);
302
_collection.
IndexOfKey
(null).Should().Be(-1);
303
_collection.
IndexOfKey
(string.Empty).Should().Be(-1);
311
Action act = () => _collection.
IndexOfKey
("foo");