c#獲取今天開始時間的時間戳,以及時間戳和時間格式轉換
阿新 • • 發佈:2019-01-04
今天有時間戳轉換的需求,網上找了半天才找到相關程式碼,經測試有效,特作此筆記和大家分享!
1.時間戳轉為C#格式時間
/// <summary> /// 時間戳轉為C#格式時間 /// </summary> /// <param name="timeStamp">Unix時間戳格式</param> /// <returns>C#格式時間</returns> public static DateTime GetTime(string timeStamp) { 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); }
2.DateTime時間格式轉換為Unix時間戳格式
/// <summary> /// DateTime時間格式轉換為Unix時間戳格式/// </summary> /// <param name="time"> DateTime時間格式</param> /// <returns>Unix時間戳格式</returns> public static int ConvertDateTimeInt(System.DateTime time) { System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1)); return (int)(time - startTime).TotalSeconds; }
c#怎麼獲取今天的開始時間和今天的結束時間:
1 2 |
DateTime start=DateTime.Today;
DateTime End=DateTime.Today.AddDays(86399F/86400);
|