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:

  1. jump-statement;    
  2. continue;   

C# Continue Statement Example

  1. using System;  
  2. public class ContinueExample  
  3.     {  
  4.       public static void Main(string[] args)  
  5.       {  
  6.          for(int i=1;i<=10;i++){    
  7.             if(i==5){    
  8.                 continue;    
  9.             }    
  10.             Console.WriteLine(i);    
  11.         }    
  12.       }  
  13.    }  

Output:

1
2
3
4
6
7
8
9
10

Comments

Popular posts from this blog

Throw vs Throw ex in C#

C# | Association, Aggregation and Composition

String[] args in C#