C#使用linq计算执行元素在列表中出现次数的方法
程序员文章站
2023-11-24 18:39:04
本文实例讲述了c#使用linq计算执行元素在列表中出现次数的方法。分享给大家供大家参考。具体如下:
这是使用linq计算元素在列表中出现的次数,调用方法非常简单,和sql...
本文实例讲述了c#使用linq计算执行元素在列表中出现次数的方法。分享给大家供大家参考。具体如下:
这是使用linq计算元素在列表中出现的次数,调用方法非常简单,和sql语句很像
复制代码 代码如下:
// count the number of times an item appears in this list
public static int counttimes<t>(this list<t> inputlist, t searchitem)
{
return ((from t in inputlist where t.equals(searchitem) select t).count());
}
public static int counttimes<t>(this list<t> inputlist, t searchitem)
{
return ((from t in inputlist where t.equals(searchitem) select t).count());
}
希望本文所述对大家的c#程序设计有所帮助。