Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用这样的激活器为数据行创建实例
dataItem = Activator.CreateInstance<T>();
当我使用此代码时,我遇到了异常
没有为此对象定义无参数构造函数。
DataRow 的唯一构造函数是 internal。通过调用DataTable.NewRow()创建 DataRow 。