注册 登录
编程论坛 ASP.NET技术论坛

vs2008出现错误“System.Data.DataRow”不包含采用“0”参数的构造函数

maiyongxian 发布于 2011-02-07 14:34, 1533 次点击
代码如下:
class T_UsersRow:DataRow
{

}
请问怎样解决?
2 回复
#2
bygg2011-02-09 12:01
添加 构造函数
#3
baoyuwang1982011-02-11 01:14
class T_userRow:DataRow
{
public:
    T_userRow(){DataRow();}
}
1