Example #1
0
 public int IndexedJoin()
 {
     return(_hashIndexed
            .Join(_outer,
                  i => i.Property, o => o.Property,
                  (i, o) => i.Property + o.Property)
            .Enumerate());
 }