IEnumerable<int> dnfItems = new List<int> { 100, 200, 300 };int dnfCount = (from dnf in dnfItems select dnf).Count();
Login to post response