top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to List Odd Numbers from a List of Integers using LINQ Query in C#?

–1 vote
334 views
How to List Odd Numbers from a List of Integers using LINQ Query in C#?
posted May 3, 2016 by Jayshree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;

    namespace ACSampleCode
    {
        class Program
        {
            static void Main(string[] args)
            {
                // LINQ Query to list out odd numbers from a list of integers using LINQ
                List LstACValues = new List { 1, 7, 2, 5, 10, 16 };
                var result = (from m in LstACValues
                              where m % 2 != 0
                              select m).ToList();
                foreach (var item in result)
                    Console.WriteLine(item);
                Console.ReadLine();
            }
        }
    }**
answer May 3, 2016 by Shivaranjini
...