For Each Loop in C# .NET

Introduction: This tutorial will be on how to use a 'foreach' loop in C# .NET. ForEach: A ForEach loop in C# is used to iterate through a list of elements held within one location. An example of this could be a list of usernames which are allowed to login to the program. This is what example we are going to be using in this tutorial. Theory: I am going to create a C# Console Application which will do the following; Ask the user for a name. Create a list of accepted usernames. Use a foreach loop to iterate through each of the accepted usernames. Output the result. Application - Username: So first, we want to ask the user for their username. We are simply going to output a message using the 'console.writeline' namespace/method asking the user for their username, then use the 'readline' method to put their entry in to a new 'username' string variable...
  1. Console.Writeline("Enter your username: ");
  2. string username = Console.ReadLine();
Application - Accepted: Now we want to create a list of accepted usernames. This will be a simple single dimensional string array, like so...
  1. string[] accepted = {"user", "admin"};
This would allow the entry of 'user' or 'admin' in to the application. Application - For Each: Before we begin iterating through the accepted usernames to check if the user is accepted. We want to create a boolean to hold whether they are accepted or not, we'll call this 'acc'...
  1. bool acc = false;
The next thing we want to do is iterate through the accepted usernames and compare it to the entered username from the user held within our 'username' string variable...
  1. foreach (string s in accepted) {
  2.         if (s.ToLower() == username.ToLower()) {
  3.                 acc = true;
  4.                 break;
  5.         }
  6. }
Now we will have the boolean variable 'acc' as 'true' if the user is accepted. We can use this later like so...
  1. if (acc) {
  2.         Console.WriteLine("Accepted!");
  3. }else
  4.         Console.WriteLine("You're not accepted!");
Finished! Here is the full source code...
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Foreach
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.WriteLine("Enter your username: ");
  14.             string username = Console.ReadLine();
  15.             string[] accepted = {"user", "admin"};
  16.             bool acc = false;
  17.             foreach (string s in accepted) {
  18.                 if (s.ToLower() == username.ToLower()) {
  19.                     acc = true;
  20.                     break;
  21.                 }
  22.             }
  23.             if (acc) {
  24.                 Console.WriteLine("You're accepted!");
  25.             }else{
  26.                 Console.WriteLine("You're not accepted!");
  27.             }
  28.         }
  29.     }
  30. }

Add new comment