IEnumerable<int> dnfItems = new List<int> { 100, 200, 300, 400, 500 };int dnfCount = dnfItems.Count(x => x < 250);
Login to post response