in C Sharp by
Q:

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 Oct 11, 2021 in Python by rajeshsharma
0 votes
asked Feb 16, 2020 in C Sharp by rahuljain1
0 votes
asked Oct 18, 2019 in C Sharp by Robin
0 votes
asked Dec 14, 2019 in Python by sharadyadav1986
...