using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace Rextester
{
public class Program
{
public static void Main(string[] args)
{
new List<int>() { 5 , 87 , 4 , 54 , 78 , 54 }
.Where(f => f > 20)
.ToList()
.ForEach(Console.WriteLine);
}
}
}
|