gpt4 book ai didi

c# - 无法从 Decimal 转换为 Int32

转载 作者:行者123 更新时间:2023-11-30 22:25:54 28 4
gpt4 key购买 nike

谁能告诉我为什么在从 Oracle 数据库读取时出现以下错误:

Object of type 'System.Decimal' cannot be converted to type 'System.Int32'.

当我将类型为 object 的变量 (oValue) 传递给函数时,就会发生这种情况。我已经尝试过转换、转换、取消选中、截断,几乎整个 sha-bang,但没有任何效果。这是代码失败的地方:

PropertyInfo property = Objects[0].GetType().GetProperty(sProperty);
property.SetValue(Objects[0], oValue, null);

如有任何帮助,我们将不胜感激。

编辑:这是我到目前为止尝试过的:

(int)oValue, Convert.ToInt32(oValue), Math.Truncate((decimal)ovalue), Decimal .Truncate((decimal)oValue)Decimal.ToInt32((decimal)oValue),并使用未选中的{}

最佳答案

放:-

property.SetValue(Objects[0],Decimal.ToInt32(Convert.ToDecimal(oValue)) , null); 

关于c# - 无法从 Decimal 转换为 Int32,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12106522/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com