using System.Collections.Generic;
public DateTime? dt {get;set;}
public static void Main()
var l = new List<Test>();
l.Add(new Test{dt = new DateTime(2021, 12, 1, 0, 0, 0, DateTimeKind.Utc)});
if(l.Any(li => li.dt >= new DateTime(2021, 11, 1, 0, 0, 0, DateTimeKind.Utc))){
Console.WriteLine("success");