_comboBoxItems array
[0] = "01 01010304"
[0] = "01 01230304"
[0] = "01 01010784"
[0] = "01 01135404"
typedSoFar = "010"
if (_comboBoxItems[i].StartsWith(typedSoFar, StringComparison.CurrentCultureIgnoreCase))
{
match = _comboBoxItems[i];
break;
}
但如果永远不是真的。为什么?例如,010 是 01 01010304 的一部分。可能是问题 StringComparison.CurrentCultureIgnoreCase?