Partitioning refers to the operations of dividing an input sequence into two sections, without rearranging the elements, and then returning one of the sections.
Skip
Skips elements up to a specified position in a sequence.
Method Syntax
// Skip
var numbers = new int[] { 1, 2, 3, 4, 5 };
...