具體如下:
這是使用linq計(jì)算元素在列表中出現(xiàn)的次數(shù),調(diào)用方法非常簡(jiǎn)單,和sql語(yǔ)句很像
代碼如下:
// 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());
}
更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄