C# Foor Loop

 for (int i = 0; i < 5; i++)

{
  Console.WriteLine(i);
}
Output:
0, 1, 2, 3, 4

Yorumlar