为什么Convert.ToDateTime(Int64)失败?

时间:2013-10-30 23:01:57

标签: c# .net datetime

为什么以下内容失败并且"来自' Int64'的无效广播到' DateTime'。"异常?

long oldDate=new DateTime(2015, 1, 1).Ticks;
DateTime newDate=Convert.ToDateTime(oldDate);

.Ticks是long / Int64,Convert.ToDateTime(Int64)MSDN文档显示接受long / Int64的方法。

public static DateTime ToDateTime(
  long value
)

编辑: 如下面的ebyrob所指出的那样应该是:

long oldDate=new DateTime(2015, 1, 1).Ticks;
DateTime newDate=new DateTime(oldDate);

2 个答案:

答案 0 :(得分:6)

来自Convert.ToDateTime Method (Int64)上的MSDN文档:

  

调用此方法始终会抛出InvalidCastException。

  

返回值   键入:System.DateTime   不支持此转换。没有返回任何值。

来源:http://msdn.microsoft.com/en-us/library/400f25sk.aspx(该链接指向.NET 4.5文档,但对于低至2.0的所有版本,它都是相同的。)

我不确定为什么不支持此功能,尤其是new DateTime(oldDate)效果良好时:

DateTime newDate = new DateTime(oldDate);

答案 1 :(得分:0)

DateTime.FromBinary(oldDate)确实有效