本文介绍了指定演员表无效。在wpf c#?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

int resourceType = row.Field<int>("jbd_jobno");



获取指定错误的演员无效。



jbd_jobno是一个整数



请帮我解决


getting an error specified cast is not valid.

"jbd_jobno" is an integer

Please help me out

推荐答案

int? resourceType = row.Field<int?>("jbd_jobno");



这篇关于指定演员表无效。在wpf c#?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 17:25