while (expression) statement
// keyword while using System; class whileExample { public static void Main() { int iCSharpSalary = 60000; // C# developer's average salary while (iCSharpSalary < 80000 ) { Console.WriteLine("I need more than ${0} a year" , iCSharpSalary); iCSharpSalary += 5000; // bonus } // pause console window Console.ReadLine(); } }
Build Your Own ASP.NET Website Using C# & VB.NET