IEnumerable<int> dnfItems = new List<int> { 10, 20, 30, 40, 50, 60, 70 };int dnfCount = (from dnf in dnfItems where dnf < 50 select dnf).Count();
Login to post response