Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 List<> 集合,其中包含一堆图像。列表中的每个对象都有一个字符串类型的 .Tag 值。
这些对象只是草莓、香蕉或桌椅等物品的图像......
我想知道如何检查某个字符串是否等同于 List<> 集合中的任何 .Tag 字符串。
我知道我可能可以循环,但是......我不能用listName.Contains(stringName)某种方式来限定.Tag吗?
listName.Contains(stringName)
我希望这是有道理的。
这个怎么样。
listname.Any(x=>x.TagName==stringName)