标签:new one pre any style 有一个 过滤 class 元素
假设我们有一个集合,想要判断这个集合中是否包含任何元素可以使用Linq中的Any()
List<string> list = new List<string>
{
"one",
"two",
"three"
};
bool b = list.Any();
any()还有另外一个重载,以lambda形式指定过滤器
bool b = list.Any(u => u.Length == 1);
标签:new one pre any style 有一个 过滤 class 元素
原文地址:http://www.cnblogs.com/bidianqing/p/7354519.html