3 references to FindStringExact
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
315public int FindStringExact(string? s, int startIndex) { return ComboBox.FindStringExact(s, startIndex); }
System.Windows.Forms.Tests (2)
System\Windows\Forms\ComboBoxTests.cs (2)
1700Assert.Equal(expected, control.FindStringExact(s, startIndex)); 1714Assert.Throws<ArgumentOutOfRangeException>("startIndex", () => control.FindStringExact("s", startIndex));