This statement returns the control back to the Boolean expression that controls an iteration statement.
Example:
static void Main(string[] args) { for (int i = 1; i <= 4; i++) { if (i !=1) {
continue; } } } |
2
3
4
This blogs helps you to understand Basic concepts to Advanced concepts in C#.Net,Asp.Net and MOSS
static void Main(string[] args) { for (int i = 1; i <= 4; i++) { if (i !=1) {
continue; } } } |
No comments:
Post a Comment