标签: c#
我有以下代码:
object[] destination = new object[10]; destination[0] = 0L; var val = (decimal)destination[0];
为什么在第三行被抛出异常:
System.InvalidCastException:'无法转换类型的对象 “ System.Int64”键入“ System.Decimal”。
?