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