In Perl I can skip a foreach (or any loop) iteration with a next; command.
next;
Is there a way to skip over an iteration and jump to the next loop in C#?
The easiest way to do that is like below:
//Skip First Iteration foreach ( int number in numbers.Skip(1)) //Skip any other like 5th iteration foreach ( int number in numbers.Skip(5))