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