using System;
using System.Threading;
public class Program
{
public static void Main()
int increment = 0;
bool condition = true;
while (condition)
Console.WriteLine("Current value is: " + ++increment); //this line will be executed depending on while condition
Console.ReadLine();
condition = false;
}
Console.WriteLine("End of looping");