Adf.Core.Extensions.DateTimeExtensions.IsInRange C# (CSharp) 메소드

IsInRange() 공개 정적인 메소드

public static IsInRange ( this current, System.DateTime start, System.DateTime end ) : bool
current this
start System.DateTime
end System.DateTime
리턴 bool
        public static bool IsInRange(this DateTime current, DateTime start, DateTime end)
        {
            return start <= current && current <= end;
        }