指定的转换无效
cs.FeeStandards = (decimal)item.Cells["FeeStandards"].Value;指定的转换无效,求高手 --------------------编程问答-------------------- 试试
cs.FeeStandards = (decimal)(item.Cells["FeeStandards"].Value);
--------------------编程问答-------------------- 试试这样:
cs.FeeStandards = (decimal)(item.Cells["FeeStandards"].Value);
--------------------编程问答-------------------- Value的实际内容不能被转为 decimal
补充:.NET技术 , .NET Framework