3 references to FindString
System.Windows.Forms (1)
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
1365
public int FindString(string s) =>
FindString
(s, startIndex: -1);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ListBoxTests.cs (2)
5023
Assert.Equal(expected, control.
FindString
(s, startIndex));
5034
Assert.Throws<ArgumentOutOfRangeException>("startIndex", () => control.
FindString
("s", startIndex));