top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Deferred Execution Example in LINQ and C#?

0 votes
227 views
Deferred Execution Example in LINQ and C#?
posted May 2, 2016 by Latha

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
using System;

using System.Collections.Generic;

using System.Data;

using System.Linq;

namespace AbundantCode

{

internal class Program

{

// Deferred Execution Example in LINQ and C#

private static void Main(string[] args)

{

List<int> nos = new List<int>();

nos.Add(100);

nos.Add(101);

var Output = nos.Where(a => a % 2 == 0);

// New element added after retreival in Output

nos.Add(102);

foreach (var no in Output)

Console.WriteLine(no);

Console.ReadLine();

}

}

}
answer May 2, 2016 by Shivaranjini
...