CClash.ExtensionMethods.Age C# (CSharp) Method

Age() public static method

public static Age ( this dt ) : System.TimeSpan
dt this
return System.TimeSpan
        public static TimeSpan Age(this DateTime dt)
        {
            return DateTime.Now.Subtract(dt);
        }
    }
ExtensionMethods