0 votes
in C Sharp by (13.0k points)
What is the difference between “continue” and “break” statements in C#?

1 Answer

0 votes
by (23.1k points)
“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.

Related questions

...