how to write forloop c# code example
Example 1: c# for loop example
for (int i = 0; i < 2; i++)
{
for(int j =i; j < 4; j++)
Console.WriteLine("Value of i: {0}, J: {1} ", i,j);
}
Example 2: c# for
for (int i = 0; i < 5; i++)
{
if (i >= 4)
{
break;
}
Console.WriteLine(i);
}