The difference between foreach with other looping operations is that foreach is dynamic in nature, whereas other loops are not dynamic. We use foreach concept when we don't aware about the number of entries in the program.
Below is a basic program to learn how to use foreach concept in C# language. Although we can implement below program by using For or While loop, but this program is helpful to understand how to use foreach concept.
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int n = 0; Console.WriteLine("Please enter the number of entry"); n = Convert.ToInt32(Console.ReadLine()); string[] str = new string[n]; // declaring array for (int i = 0; i < n; i++) { Console.WriteLine("Please the entry number {0}", i); str[i] = Console.ReadLine(); } foreach (string str1 in str) { Console.WriteLine("entry : " + str1); } Console.ReadLine(); } } }
Markdown for AI
A clean, structured version of this page for AI assistants and LLMs.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
The difference between foreach with other looping operations is that foreach is dynamic in nature, whereas other loops are not dynamic. We use foreach concept when we don't aware about the number of entries in the program.
Below is a basic program to learn how to use foreach concept in C# language. Although we can implement below program by using For or While loop, but this program is helpful to understand how to use foreach concept.