将UTC时间转换为标准时间的代码
复制代码 代码如下:
public DateTime UTCToDateTime(Int64 utc)
{
DateTime dtZone = new DateTime(1970, 1, 1, 0, 0, 0);
dtZone = dtZone.AddSeconds(utc);
return dtZone.ToLocalTime();
}
MessageBox.Show(UTCToDateTime (1294675200).ToString()); //得到2011-1-11 00:00:00