_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;
}
しかし、if は真ではありません。なぜ?たとえば、010 は 01 01010304 の一部です。StringComparison.CurrentCultureIgnoreCase の問題になる可能性がありますか?