C# Continue Statement
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.
Syntax:
C# Continue Statement Example
Output:
1 2 3 4 6 7 8 9 10
Comments
Post a Comment