Example of Immediate Query Execution of LINQ in C# .NET

Below is a sample code snippet that demonstrates the Immediate Query execution of LINQ Query in C#.

Example of Immediate Query Execution of LINQ in C# .NET

using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.DirectoryServices.AccountManagement;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Reflection;
namespace AbundantCode
{
 internal class Program
 {
  // Example of Immediate Query Execution of LINQ in C# .NET
  private static void Main(string[] args)
  {
   var Input = new List<int> { 45, 22, 46, 51, 60 };
   var EvenNumbers = Input.Where(a => a %% 2 == 0).ToList();
   Input.Add(100);
   foreach (var Data in EvenNumbers)
   {
    Console.WriteLine(Data);
   }
   Console.ReadLine();
  }
 }
}

The Output of the above program in

Example of Immediate Query Execution of LINQ in C# .NET