using System; using System.Collections.Generic; using System.Linq; using System.Text; class LinqExercise10 { static void Main(string[] args) { int i=0; int memlist,n,m; List templist = new List(); Console.Write("\nLINQ : Accept the members of a list and display the members more than a specific value : "); Console.Write("\n----------------------------------------------------------------------------------------\n"); Console.Write("Input the number of members on the List : "); n= Convert.ToInt32(Console.ReadLine()); for(i=0; i FilterList = templist.FindAll(x => x > m ? true : false); Console.WriteLine("\nThe numbers greater than {0} are : ",m); foreach (var num in FilterList) { Console.WriteLine(num); } Console.ReadLine(); } }