Projects the elements of that sequence to new sequences that converted to one flatten sequence.

// 1, 10, 100,
// 2, 20, 200,
// 3, 30, 300
Enumerable.create(1, 2, 3)
          .selectMany('x => [x, x * 10, x * 100]');