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

Technology CommunityCategory: C#What is the difference between “continue” and “break” statements in C#?
VietMX Staff asked 3 years ago
  • 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