I have an incoming array with a count per line and a line that represents one or more keys separated by an underscore.
for each key that I would like to group and summarize the total number, if the key appears in a line with a total number of 5, each element separated by an underscore will increase by 5.
I'm just wondering how this will be presented in linq ...
class Owl { public int SpeciesCount { get; set; } public string BandIdentifier { get; set; } } public class GoOwl { public GoOwl(Owl[] owls) {
the following will be the desired output as separate Owl objects
["OWL1", 3] ["OWL2", 6] ["OWL3", 8]
I still do not get SelectMany ..
Greetings
source share