Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个日期值作为整数存储在使用 SQLDateTime DayTicks 函数创建的数据库中。如何将该整数值反向工程回 DateTime 值?
您将丢失日期的时间部分,除非您也有 timeTicks 在某处浮动。这会将 dayTicks 转换回 DateTime:
SqlDateTime sdt = new SqlDateTime(dayTicks, 0); DateTime dt = sdt.Value;
试试这个:
DateTime result = new DateTime(ticks);
有一个 DateTime 构造函数的重载,它采用刻度数。