int i = 0; i++; // Adds 1 to i i = i + 1; // Adds 1 to i
for (int i = 0; i < 10; i+=2) { Console.WriteLine(i); } Console.ReadLine();