C# program for Find concept in list when no item matches

Amatya
Posted by Amatya under C# category on | Points: 40 | Views : 1283
C# program for Find concept in list when no item matches
var dnfLst_1 = new List<int>() { 50, 20, 10 };
int dnf = list.Find(x => x > 100);



dnf 0

Comments or Responses

Login to post response