Continue statement C#
Continue only break the flow of the loop, not the whole loop. whenever continue encounters, loop body after continue will not be executed but the loop will continue as usual.
Example
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int i; for (i = 1; i <= 10; i++) { if ((i % 2) == 0) continue; Console.WriteLine(i); } } } }