简体   繁体   中英

Count, orderby and group in LINQ

Given a set

Paris New York London New York Paris Paris

I'm trying to do a LINQ query that will return a grouping of the Paris, New York, and London with their respective counts .

I've been able to do a GroupBy that returns a group containing only the Paris/New York/London in each Grouping.

Sounds relatively simple, but I can't get it to work?

Edit : It's not a homework problem.

CODE

String[] input = new [] { "Paris", "New York", "London",
                          "New York", "Paris", "Paris" };

var groups = input
    .GroupBy(city => city)
    .Select(group => new { City = group.Key, Count = group.Count() });

foreach(var group in groups)
{
    Console.WriteLine("{0} occurs {1} time(s).", group.City, group.Count);
}

OUTPUT

Paris occurs 3 time(s).
New York occurs 2 time(s).
London occurs 1 time(s).

在分组上使用.Count()。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM