foreach
foreach iterates over each element in a collection.
string[] fruits = { "apple", "banana", "cherry" };foreach (string fruit in fruits){ Console.WriteLine(fruit);}Run the Application
Section titled “Run the Application”dotnet runResult
Section titled “Result”applebananacherry