C# Jump Statement break, continue, goto, return | break vs continue | jump out of In C#, jump statements are used to transfer control to another part of the program. There are four types of jump statements in C#: 1. break statement: It is used to exit from the current loop or switch statement. 2. continue statement: It is used to skip the current iteration of a loop and continue with the next it..