Aqueduct.Extensions.Dates.DiffMinutes C# (CSharp) Метод

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

Returns a double indicating the number of days between two dates (past is negative)
public static DiffMinutes ( this dateOne, System.DateTime dateTwo ) : double
dateOne this The date one.
dateTwo System.DateTime The date two.
Результат double
        public static double DiffMinutes(this DateTime dateOne, DateTime dateTwo)
        {
            return Diff(dateOne, dateTwo).TotalMinutes;
        }

Same methods

Dates::DiffMinutes ( this dateOne, string dateTwo ) : double