using System; public class DoWhileTester
{ public static void Main()
{ int counterVariable = 11;
// display the message and then test that the value is
// less than 10 do
{
Console.WriteLine("counterVariable: {0}",counterVariable);
counterVariable++;
} while (counterVariable < 10);
}
}