for Loop in C# — a practical guide to C# for loop with clear examples you can reuse in real projects.
C# Tutorial Series (32/121). Prefer one article? Read the complete C# tutorial.
Short description
Be careful with bounds and off-by-one errors.
for
for (var i = 0; i < items.Length; i++)
{
Console.WriteLine(items[i]);
}