While-1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DongulerWhile1 { class Program { static void Main(string[] args) { int i = 1; while (i<11) { Console.WriteLine(i); i++; } Console.ReadKey(); } } }