Aqueduct.Extensions.Dates.DiffMinutes C# (CSharp) Method

DiffMinutes() public static method

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.
return double
        public static double DiffMinutes(this DateTime dateOne, DateTime dateTwo)
        {
            return Diff(dateOne, dateTwo).TotalMinutes;
        }

Same methods

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