当前位置: 代码迷 >> ASP.NET >> IList<string>的计算解决方法
  详细解决方案

IList<string>的计算解决方法

热度:6829   发布时间:2013-02-25 00:00:00.0
IList<string>的计算
判断一个IList<string> 是否有项和 给定的字符串 部分匹配

使用 lambda表达式或者扩展方法怎么写?

------解决方案--------------------------------------------------------
(1) if (list.Count() > 0) //有项
(2) if (list.Any(x => x.Contains(str)) //存在部分匹配str的项
  相关解决方案