C# code for matching when no item for specified condition

Amatya
Posted by Amatya under C# category on | Points: 40 | Views : 1501
C# code for matching when no item for specified condition
var dnfLst_1 = new List<int>() { 50, 20, 10, 60, 40 };
var dnfLst_2 = dnfLst_1.FindAll(x => x > 100);



dnfLst_2 empty

Comments or Responses

Login to post response