我们如何在使用getter setter时手动创建数据表。 像:
public class School
{
Private DataTable _rec;
public DataTable rec{
get{_rec;}
set{rec=value;}
}
}
然后我必须使用此表手动添加列和数据。
School sch= new School();
sch.rec.Columns.Add("city", typeof(String));
sch.rec.Columns.Add("province", typeof(String));
DataRow workRow;
workRow = sch.rec.NewRow();
workRow[0] = "ABC CITY";
workRow[1] = "ABC PRO";
sch.rec.Rows.Add(workRow);
但在这一行" sch.rec.Columns.Add(" city",typeof(String));"我没有将错误对象引用设置为对象实例。