我正在尝试在c#中创建一个方法,该方法检查字符串是否已传递到列表中。
private List<string> _identifiers;
public Profile (string[] names)
{
_identifiers = new List<string>(names);
}
public bool Exists (string id)
{
if ((_identifiers [0] == "id1")&&(_identifiers [1] == "id2"))
{
return true;
}
else
{
return false;
}
}
我该怎么做?谢谢!
答案 0 :(得分:1)
Linq扩展方法:
return _identifiers.Contains(id);