0 votes
in C Sharp by

What is the difference between "continue" and "break" statements in C#?

1 Answer

0 votes
by

using break statement, you can jump out of a loop

using continue statement, you can jump over one iteration and then resume your loop execution

...