This example describes how to perform foreach statement. The foreach statement iterates through a collection that implements the IEnumerable interface. When we compare with for statement foreach does’t use the indexes.
static void Main(string[] args)
{
try
{
var names = new List<string>() { "Car", "Bike", "Bus" };
foreach (string name in names)
{
Console.WriteLine(name);
}
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
Console.ReadLine();
}
Output:
Car
Bike
Bus