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

前端之家收集整理的这篇文章主要介绍了c# – 为什么Convert.ToDateTime(Int64)失败?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么以下失败/“从’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).Ticks;
DateTime newDate=new DateTime(oldDate);

解决方法

从Convert.ToDateTime方法(Int64)上的MSDN文档:

Calling this method always throws InvalidCastException.

Return Value
Type: System.DateTime
This conversion is not supported. No value is returned.

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

我不确定为什么不支持这一点,特别是如果新的DateTime(oldDate)运行良好:

DateTime newDate = new DateTime(oldDate);
原文链接:https://www.f2er.com/csharp/244639.html

猜你在找的C#相关文章