var dnfList = new List<int> { 100, 10, 200, 150 };int dnfMin = (from dnf in dnfList select dnf).Min();
Login to post response