c# while loop examples Example: while loop in c# int i = 0; while (i < 10) { Console.WriteLine("Value of i: {0}", i); i++; }