CClash.ExtensionMethods.Age C# (CSharp) 메소드

Age() 공개 정적인 메소드

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