Skip to content

PRO TIP Block youtube.com at the DNS level — Pi-hole, NextDNS or your hosts file — but allow youtube-nocookie.com and i.ytimg.com. These tutorials keep playing; the rabbit hole does not.

Learning without distractions

C# foreach loop ➰

79.2K views on YouTube

C# foreach loop tutorial example explained

#C# #foreach #loop

using System;

namespace MyFirstProgram
{
class Program
{
static void Main(string[] args)
{
// foreach loop = a simpler way to iterate over an array, but it’s less flexible

String[] cars = {“BMW”, “Mustang”, “Corvette”};

foreach (String car in cars)
{
Console.WriteLine(car);
}

Console.ReadKey();
}
}
}