make a loop 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: loop in c#
public class MyClass
{
void Start()
{
//Called when script inithilizes
}
void Update()
{
//called each fram
}
}
//note this is in C#
Example 3: c# for
for (int i = 0; i < 5; i++)
{
if (i >= 4)
{
break;
}
Console.WriteLine(i);
}