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

c# – 为什么Convert.ToDateTime(Int64)失败?,第1张

概述为什么以下失败/“从’Int64’到’DateTime’的无效转换.”例外? long oldDate=new DateTime(2015, 1, 1).Ticks;DateTime newDate=Convert.ToDateTime(oldDate); .Ticks是long / Int64,Convert.ToDateTime(Int64)MSDN文档显示接受long / 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);
总结

以上是内存溢出为你收集整理的c# – 为什么Convert.ToDateTime(Int64)失败?全部内容,希望文章能够帮你解决c# – 为什么Convert.ToDateTime(Int64)失败?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1251741.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存