How to List Odd Numbers from a List of Integers using Lambda Expression in C#?

Are you looking out for a simple logic to retrieve the odd numbers from the list of integers using Lambda Expression in C#? Below is a sample code snippet demonstrating how to do it.

How to List Odd Numbers from a List of Integers using Lambda Expression in C#?

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)
        {
            // List out the odd numbers from a list of integers using Lambda Expression
            List LstACValues = new List { 1, 7, 2, 5, 10, 16 };
            var result = LstACValues.Where(a => a %% 2 != 0).ToList();
            foreach (var item in result)
                Console.WriteLine(item);
            Console.ReadLine();
        }
    }
}
How to List Odd Numbers from a List of Integers using Lambda Expression in C#?