.Net中没有封装获取时间戳(UnixTime,相对于1970年1月1日凌晨的毫秒数)的方法。因此本人写了如下方法实现。
提醒在摸索中的朋友,注意方法中的四舍五入。关于讨论四舍五入的方法,可以在这里找到:C#中的四舍五入方法
DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(, , , , , , )); DateTime nowTime = DateTime.Now; long unixTime = (long)Math.Round((nowTime - startTime).TotalMilliseconds, MidpointRounding.AwayFromZero);
原文地址:http://www.worldofyu.com/archives/get-unixtime-in-csharp