我知道我們能找到重複的項目是這樣的:在c#中,如何將字符串和它們的頻率組合到一個結果字符串中?
var dublicateItems = itemStrings.GroupBy(x => x)
.Where(x => x.Count() > 1)
.ToDictionary(g => g.Key, g => g.Count());
和獨特的項目是這樣的:
var distinctItems = itemStrings.Distinct();
但如何將其結合起來,串名單如下:
輸入:a, b, b, c, d, d, d, d
輸出:a, b (2 times), c, d (4 times)
什麼是項目字符串exactl ÿ? 'itemStrings.GroupBy(x => x)'聽起來像是做你想做的事 – Sayse
'.ToDictionary(...)。ToList()'導致我身體上的疼痛 – Rawling
@Sayse List –
Anatoly