Tests.TestUtils.IsAfter C# (CSharp) Method

IsAfter() public static method

public static IsAfter ( this dt1, System.DateTime dt2 ) : bool
dt1 this
dt2 System.DateTime
return bool
        public static bool IsAfter(this DateTime dt1, DateTime dt2)
        {
            return dt1.Subtract(dt2).TotalMilliseconds > 0;
        }
    }
TestUtils