有没有办法在 C# 中执行以下操作,但我正在寻找 .indexOf 并没有突出我。它是否存在,或者我应该使用什么其他方法?
string t = "joke";
string sentence = "there is no joke here";
string[] array = sentence.Split(" ".ToCharArray());
//here is the kicker
int count = array.indexOf(t);
return count;
这应该返回 3??