c# cosmos IndexOf not supported

本文关键字:supported not IndexOf cosmos | 更新日期: 2023-09-27 18:15:08

我正在使用cosmos来练习我的c#和更好地了解OS。我试图使用IndexOf方法,但VMware给了我:

Be aware: IndexOf(..., Stringcomparison) not fully supported yet!

是否有其他Indexof方法?例如,如果我的字符串是"hello@world",我想发现@的索引是5。

c# cosmos IndexOf not supported

您总是可以自己实现类似的方法。这样一个简单的方法可以是:

public int FindIndexOfChar(string str, char c)
{
    for (int i=0;i<str.length;i++)
        if (str[i]==c)
            return i;
    return -1;
}