c# .net

How to perform basic foreach loop?

How to perform basic foreach loop?, someone asked me to explain?

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

Post your comments / questions