How to List out Even Numbers from a List of Integers using LINQ in C#?

Below is sample code snippet that demonstrates how to list out only even numbers from a list of integers using LINQ?

How to List out Even Numbers from a List of Integers using LINQ in C#?

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

namespace AbundantcodeConsole
{

    class Program
    {
        static void Main(string[] args)
        {
            // LINQ Query to list out even 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();

        }
    }

}
How to List out Even Numbers from a List of Integers using LINQ in C#?