定义类, 定义类如下: public partial class MyList { private string Called_1= ""; public string Called { get { return this.Called_1; } set { this.Called_1 = value; } } }
在另一个程序使用: MyList[] rl=null; DataTable dt=...... if (dt != null && dt.Rows.Count > 0) { for (int i = 0; i < dt.Rows.Count; i++) { rl[i].Called = "12";//总是提示:未将对象引用设置到对象的实例。 } }