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#?
You can use the continue statement.
For example:
foreach(int number in numbers) { if(number < 0) { continue; } }