System.DateTimeOffsetExtensions.IsOlderThan C# (CSharp) Method

IsOlderThan() public static method

public static IsOlderThan ( this self, System.TimeSpan age ) : bool
self this
age System.TimeSpan
return bool
        public static bool IsOlderThan(this DateTimeOffset self, TimeSpan age)
        {
            return (DateTimeOffset.UtcNow - self) > age;
        }
DateTimeOffsetExtensions