var dnfList = new List<int> { 10, 20, 30, 40, 50 };int dnfSum = (from x in dnfList where x > 20 select x).Sum();
Login to post response