ASP. NET time stamp vs. time

Source: Internet
Author: User
Tags net time

<summary>///timestamp turn into Time type///</summary>//<param name= "TimeStamp" &GT;&LT;/PARAM&G        T <returns></returns> public static DateTime GetTime (stringTimeStamp)            {DateTime Dtstart = TimeZone.CurrentTimeZone.ToLocalTime (New DateTime (1970, 1, 1)); Long ltime = long.            Parse (TimeStamp + "0000000");            TimeSpan tonow = new TimeSpan (Ltime);        Return Dtstart.add (Tonow); }///<summary>//The time type is converted to long//</summary>//<param name= "Times" ></pa ram>//<returns></returns> public static long Convertdatetimeint (System.DateTime time) {Long intresult = 0; System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime (New System.DateTime (1970, 1, 1)); intresult = ( Long) (Time- startTime). TotalSeconds; return Intresult;}         

<summary>///        concatenation of JSON strings;        For example: "{\" ret\ ": \" err\ ", \" stadname\ ": \" Unknown \ "}"///</summary>//        <param name= "Jsondict" ></ param>        //<returns></returns> public static string Getjsonstr (Dictionary<string, string > jsondict)        {            StringBuilder sb = new StringBuilder ("{");            int i = 0;            foreach (keyvaluepair<string, string> JD in jsondict)            {                if (i! = (Jsondict.count ()-1))                {                    sb. Append ("\" + JD.) Key + "\": \ "" + JD. Value + "\", "); } else {sb. Append ("\" + JD.) Key + "\": \ "" + JD. Value + "\" "); } i++;} sb. Append ("}"); Return sb. ToString (); }

ASP. NET time stamp vs. time

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.