大文字小文字を区別しない検索でリスト内の項目のインデックスを取得する方法はありますか?文字列が見つからなかった場合はList.IndexOf大文字小文字を区別することを決定する
string s = "foobarbaz";
int index = s.IndexOf("BAR", StringComparison.CurrentCultureIgnoreCase); // index = 3
、IndexOf()
戻り-1
:
List<string> sl = new List<string>() { "a","b","c"};
int result = sl.IndexOf("B"); // should be 1 instead of -1
これは 'STRING'に関するものではありません、それは'一覧 ' –
c0rd