using System;
public class Program
{
public static void Main()
while (true)
/*Excecute the block of code"*/
/*A break keyword can be used inside the while loop to terminate it."*/
if (false)
break;
}