public Dictionary <int, int> AgeCountMap() { return(Jogadores .GroupBy(x => x.Idade) .ToDictionary(x => x.Key, group => group.Count())); }