What is the difference between Continue and Break Statement in C#?
- Break statement breaks the loop. It makes the control of the program to exit the loop. Continue statement makes the control of the program to exit only the current iteration. It does not break the loop.
No comments