System.DateTimeOffsetExtensions.IsOlderThan C# (CSharp) Méthode

IsOlderThan() public static méthode

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