本文整理汇总了C#中SortedDictionary.GroupBy方法的典型用法代码示例。如果您正苦于以下问题:C# SortedDictionary.GroupBy方法的具体用法?C# SortedDictionary.GroupBy怎么用?C# SortedDictionary.GroupBy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SortedDictionary
的用法示例。
在下文中一共展示了SortedDictionary.GroupBy方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PrintOutput
private static void PrintOutput(SortedDictionary<DateTime, SortedDictionary<string, float>> activityInfo)
{
var resultBuilder = new StringBuilder();
var gropedByMonth = activityInfo
.GroupBy(x => x.Key.Month)
.ToDictionary(x => x.Key);
foreach (var group in gropedByMonth)
{
resultBuilder.Append(string.Format("{0}: ", group.Key));
var users = new SortedDictionary<string, float>();
foreach (var date in group.Value)
{
foreach (var user in date.Value)
{
if (users.ContainsKey(user.Key))
{
users[user.Key] += user.Value;
}
else
{
users.Add(user.Key, user.Value);
}
}
}
foreach (var user in users)
{
if (user.Key == users.Keys.Last())
{
resultBuilder.Append(string.Format("{0}({1})", user.Key, user.Value));
}
else
{
resultBuilder.Append(string.Format("{0}({1}), ", user.Key, user.Value));
}
}
resultBuilder.Append("\n");
}
Console.WriteLine(resultBuilder.ToString());
// Po - slojno ne mojah da go napravya pffff
}