0 votes
in C Sharp by
What is the difference between “continue” and “break” statements in C#?

1 Answer

0 votes
by
“continue” statement is used to pass the control to next iteration. This statement can be used with – “while”, “for”, “foreach” loops.

“break” statement is used to exit the loop.
...