Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.NET Framework でバグを見つけたかどうか、または何かわからないことがあるかどうかを知りたいです。このコードを実行した後:
var text = "مباركُ وبعض أكثر من نص"; var word = "مبارك"; bool exist = text.Contains(word); int index = text.IndexOf(word);
結果は、「exists = true」および「index = -1」です。
どうしてですか?