AcTools.Utils.Helpers.DateTimeExtension.IsSameDay C# (CSharp) Метод

IsSameDay() публичный статический Метод

public static IsSameDay ( this a, System.DateTime b ) : bool
a this
b System.DateTime
Результат bool
        public static bool IsSameDay(this DateTime a, DateTime b) {
            return CompareByDays(a, b) == 0;
        }