Exemple #1
0
 public int IndexedGroupJoin()
 {
     return(_hashIndexed
            .GroupJoin(_outer,
                       i => i.Property, o => o.Property,
                       (i, o) => i.Sum(e => e.Property) + o.Property)
            .Enumerate());
 }