本文介绍了如何设置为我要传递给不同形式的DataTable的静态值为null的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
public static DataTable table = new DataTable();
//DataTable
//We hardcoded our DataTable
我将表传递给另一个表格
然后返回原始表单并弹出错误
System.Data.DuplicateNameException未处理
HResult = -2146232030
消息=名为'时间(年)'的列已经属于此DataTable。
Source = System.Data
我如何处理它
I Passed the Table to another form
Then returned back to the original form and it pops the error
System.Data.DuplicateNameException was unhandled
HResult=-2146232030
Message=A column named 'Time(years)' already belongs to this DataTable.
Source=System.Data
How do I handle it
推荐答案
这篇关于如何设置为我要传递给不同形式的DataTable的静态值为null的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!