a for loop in C# code example
Example 1: how to make a for loop in c#
for (int i = 0; i < 10; i++)
{
Console.WriteLine("Value of i: {0}", i);
}
Example 2: for statement syntax C sharp
//this loop will repeat 4 times
for(int i=0; i<4; i++)
{
//do something
}