int array to frequency dictionary c# code example
Example 1: int array to frequency dictionary c#
var frequency = myList.GroupBy(x => x).ToDictionary(x => x.Key, x => x.Count());
Example 2: int array to frequency dictionary c#
using System.Linq;
List<int> ids = //
foreach(var grp in ids.GroupBy(i => i))
{
Console.WriteLine("{0} : {1}", grp.Key, grp.Count());
}