List<int> dnfnum = new List<int>{17,59,10}; List<int> dnfoddNum = dnfnum .where(n => n % 2 == 1).ToList();
Login to post response