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

Related questions

0 votes
asked May 11, 2023 in Python Flask by sharadyadav1986
+1 vote
asked May 6, 2020 in C Sharp by SakshiSharma
...