Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
C#

foreach Loop in C#

Iterate sequences with foreach and IEnumerable.

foreach Loop in C# — a practical guide to C# foreach loop with clear examples you can reuse in real projects.

C# Tutorial Series (35/121). Prefer one article? Read the complete C# tutorial.

Short description

Don’t modify a collection while enumerating it (unless using safe patterns).

foreach

foreach (var item in items)
{
    Console.WriteLine(item);
}

Leave a reply

Your email address will not be published. Required fields are marked *