C# Continue - c# - c# tutorial - c# net
C# Continue
What is continue statement in C# ?
- The C# continue statement is used to continue loop.
- It continues the current flow of the program and skips the remaining code at specified condition.
- In case of inner loop, it continues only inner loop.
c# continue statement
Syntax:
C# Continue Statement Example
C# examples - Output :
C# Continue Statement with Inner Loop
- C# Continue Statement continues inner loop only if you use continue statement inside the inner loop.