C # continue statement


Release date:2023-08-26 Update date:2023-10-13 Editor:admin View counts:309

Label:

C # continue statement

In C # continue sentence is a bit like break statement. But it’s not a forced termination. continue code in the current loop isskipped, forcing the next loop to start.

For for cycle continue statement causes conditional tests and loopincrements to be performed. For while and do...while cycle continue statement causes program control to return to the conditional test.

Grammar

In C # continue syntax of the statement:

continue;

Flow chart

Continue statement in C #

Example

using System;
namespace Loops
{

    class Program
    {
        static void Main(string[] args)
        {
            /* Definition of Local Variables */
            int a = 10;
            /* do loop execution */
            do
            {
                if (a == 15)
                {
                    /* skip iteration */
                    a = a + 1;
                    continue;
                }
                Console.WriteLine("Value of a: {0}", a);
                a++;
            } while (a < 20);

            Console.ReadLine();
        }
    }
}

When the above code is compiled and executed, it produces the following results:

Value of a: 10
Value of a: 11
Value of a: 12
Value of a: 13
Value of a: 14
Value of a: 16
Value of a: 17
Value of a: 18
Value of a: 19

Powered by TorCMS (https://github.com/bukun/TorCMS).