Exemplo n.º 1
0
 public void ExecutionIsDeferred()
 {
     var outer = new ThrowingEnumerable();
     var inner = new ThrowingEnumerable();
     // No exception
     outer.Join(inner, x => x, y => y, (x, y) => x + y);
 }
Exemplo n.º 2
0
        public void ExecutionIsDeferred()
        {
            var outer = new ThrowingEnumerable();
            var inner = new ThrowingEnumerable();

            outer.Join(inner, x => x, y => y, (x, y) => x + y);
        }