.NET 2

string[] myStrings = GetMyStrings();
string test = "testValue";

如何验证myStrings是否包含test

最佳答案

在.NET 2.0中,如果需要索引,可以执行以下操作:

int index = Array.FindIndex(
    myStrings,
    delegate(string s) { return s.Equals(test); }
);

如果index不包含-1,则myStrings将为test

如果您只想检查是否存在:
bool exists = Array.Exists(
    myStrings,
    delegate(string s) { return s.Equals(test); }
);

关于c# - 字符串数组。包含?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3917589/

10-10 15:54