Continue and Break in C#
- The break statement breaks out of the loop. Example :- Jumps out of loop when "i" is 2 - continue will skip the single iteration in …
- The break statement breaks out of the loop. Example :- Jumps out of loop when "i" is 2 - continue will skip the single iteration in …