LINQ_List_Any_Lamda2
This Examples resembles LINQ_List_Any_Lamda1.htm
Objective : Use of Any(lambda expression), as check-points

Code : LINQ_List_Any_Lamda2.txt

 
Here instead of using as ArraryList  "  ar1.Add(v1.ename + " " + v1.job + " \t" + v1.deptno); " ,  I used List<Class-Type>, like
"eList.Add(v1.ename + " " + v1.job + " \t" + v1.deptno);" .

Data Source :