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