Example of deferred execution of LINQ Query in C# .NET

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

Example of deferred execution of LINQ Query 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 deferred execution of LINQ Query 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);
   Input.Add(100);
   foreach (var Data in EvenNumbers)
   {
    Console.WriteLine(Data);
   }
    Console.ReadLine();
  }
 }
}

The Output of the above program is

Example of deferred execution of LINQ Query in C# .NET
%d