我需要能够将DateTime
C# 中的对象转换为存储在places.sqlite
.
我试过这样做,但我意识到它给了我未来的约会!
public static long convertDateTimeToEpoch(DateTime time)
{
DateTime epoch = new DateTime(1970, 1, 1);
TimeSpan ts = time - epoch;
return (long) ts.Ticks/ 10;
}
我究竟做错了什么?有人可以告诉我正确的转换方式,因为我没有找到任何例子吗?