System.DateTimeOffsetExtensions.IsYoungerThan C# (CSharp) Method

IsYoungerThan() public static method

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