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#?
Use the continue statement:
foreach(object number in mycollection) { if( number < 0 ) { continue; } }