用于检查字符串是否已传递到列表中的方法

本文关键字:列表 方法 检查 字符串 是否 用于 | 更新日期: 2023-09-27 18:27:02

我正试图在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;
        }
    }

我该怎么做?谢谢

用于检查字符串是否已传递到列表中的方法

Linq扩展方法:

return _identifiers.Contains(id);