我正在寻找最佳实践来计算每个日期在列表中出现的次数。
目前,我有工作代码(刚刚测试过),但我认为我的方式不太好。
var dates = new List<DateTime>();
//Fill list here
var dateCounter = new Dictionary<DateTime, int>();
foreach (var dateTime in dates)
{
if (dateCounter.ContainsKey(dateTime))
{
//Increase count
dateCounter[dateTime] = dateCounter[dateTime] + 1;
}
else
{
//Add to dictionary
dateCounter.Add(dateTime, 1);
}
}
谁知道更好的解决方案?
答案 0 :(得分:9)
dates.GroupBy(d => d).ToDictionary(g => g.Key, g => g.Count());