1. 程式人生 > >毫秒數據字符串轉換為DateTime

毫秒數據字符串轉換為DateTime

tostring repl def 字符串 parse str replace code 基礎上

思路:取出毫秒結果,在1970年1月1日 00:00:00的基礎上,加上毫秒數

string date = "/Date(1486363695453)/";
date = date.Replace("/Date(", "").Replace(")/", "");
double seconds=double.Parse(date);
var time= DateTime.Parse(DateTime.Now.ToString("1970-01-01 00:00:00")).AddMilliseconds(seconds);

毫秒數據字符串轉換為DateTime