I applied IGrouping <> to the list - this is how it looks:
IEnumerable<IGrouping<TierRequest,PingtreeNode>> Tiers
{
get { return ActiveNodes.GroupBy(x => new TierRequest(x.TierID, x.TierTimeout, x.TierMaxRequests)); }
}
Later in my code, I iterate over the levels. Getting key data is simple using the Key element, but how do I get IEnumerable<PingtreeNode>which forms part of the value?
thank you in advance
source
share