我想计算列表包含字符串的计数。
我不想要列表计数。我不想要列表的特定字符串计数。
我只想要列表中包含特定字符串的项目数。
在 Linq 或普通 c# 中以任何方式
Hashtable newlist = new Hashtable();
newlist = System.Web.HttpContext.Current.Application["Userlogin"] as Hashtable;
count = newlist.Count(s => newlist.Contains(sKey));
foreach (DictionaryEntry item1 in newlist)
{
if (newlist.Contains(sKey))
{
count = count + 1;
}
}
newlist 是一个哈希表