About
In this code snippet, we will take a look at break and continue in C#.
break
Is used to break out of a code block. If done in a loop it will essentially stop the loop from executing.
continue
Is used to inside a loop to skip the current iteration.
Note:
break is also used with the switch statement to break out of it after a case has been matched. See how to use the switch statement here.
Let’s have a look at the code below to see how to use break and continue.