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#?
Another approach using linq is:
foreach ( int number in numbers.Skip(1)) { // process number }
If you want to skip the first in a number of items.
Or use .SkipWhere if you want to specify a condition for skipping.
.SkipWhere