我想要獲取存儲在列表中的元素的頻率。如何從列表中獲取元素的頻率c#
我存儲以下ID在我的名單
ID
1
2
1
3
3
4
4
4
我想下面的輸出:
ID| Count
1 | 2
2 | 1
3 | 2
4 | 3
在java中,你可以做以下的方法。
for (String temp : hashset)
{
System.out.println(temp + ": " + Collections.frequency(list, temp));
}
來源:http://www.mkyong.com/java/how-to-count-duplicated-items-in-java-list/
如何獲得在C#中的列表的頻率計數?
謝謝。