C # obtain the friendly Time Difference

Source: Internet
Author: User
/// <Summary> /// obtain the time difference /// </Summary> /// <Param name = "dtold"> time to be subtracted </param> /// <Param name = "dtnow"> large time </param> // <returns> </returns> Public static string getdatediff (datetime dtold, datetime dtnow) {timespan tsold = new timespan (dtold. ticks); timespan tsnow = new timespan (dtnow. ticks); timespan datediff = tsold. subtract (tsnow ). duration (); If (convert. toint32 (datediff. days) <= 0) {If (convert. toint32 (datediff. hours) <= 0) {If (convert. toint32 (datediff. minutes)> 0) {return datediff. minutes. tostring () + "Minutes Ago";} else {return "" ;}} else {return datediff. hours. tostring () + "Hours Ago" ;}} else {If (convert. toint32 (datediff. days) <365) {return datediff. days. tostring () + "Days Ago";} else {int year = convert. toint32 (datediff. days)/365; return year. tostring () + "years ago ";}}}

 

C # obtain the friendly Time Difference

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.