CSharp examples for Language Basics:while
While Iteration Statements
using System;//from w ww . j av a 2 s . c o m using static System.Console; class Program { static void Main(string[] args) { int x = 0; while (x < 10) { WriteLine(x); x++; } } }