C#为什么抛出InvalidCastException?

时间:2019-06-28 09:25:43

标签: c#

我有以下代码:

object[] destination = new object[10];

destination[0] = 0L;

var val = (decimal)destination[0];

为什么在第三行被抛出异常

  

System.InvalidCastException:'无法转换类型的对象   “ System.Int64”键入“ System.Decimal”。

0 个答案:

没有答案