C# winForm窗口程序怎么使一个list能全局通用
程序里有Account类,我已经从一个文档里读取了信息并存入一个List<Account>list里。程序后面需要对list里面的内容进行更改或者显示(不要求改源文档)。...
程序里有Account类,我已经从一个文档里读取了信息并存入一个List<Account> list 里。
程序后面需要对list里面的内容进行更改或者显示(不要求改源文档)。但是,我不知道怎么能使list全局通用,使得每次的在list里的数据更改都能保存下来。
求大神指点。
我不确定Account的属性设置是否有影响——
public long ID { get; private set; }
public string Type { get; private set; }
public int Balance { get; private set; } 展开
程序后面需要对list里面的内容进行更改或者显示(不要求改源文档)。但是,我不知道怎么能使list全局通用,使得每次的在list里的数据更改都能保存下来。
求大神指点。
我不确定Account的属性设置是否有影响——
public long ID { get; private set; }
public string Type { get; private set; }
public int Balance { get; private set; } 展开
1个回答
展开全部
public partial class Form1 : Form
{
public static List<Account> AccountList
= new List<Account>();
//……
}
在项目中任何要的地方,使用Form1.AccoutList来存取这个list,例如
Form1.AccoultList.Add(new Account());
Account account = Form1.AccountList[0];
更多追问追答
追问
额,有点bug
错误显示——
错误 1 无效的表达式项“public” E:\learn C#\Assignment4\Assignment4\Form1.cs 17 13 Assignment4
错误 2 修饰符“static”对该项无效 E:\learn C#\Assignment4\Assignment4\Form1.cs 17 20 Assignment4
怎么解决呢?
追答
在Fomr1中
public partial class Form1 : Form
{
public static List<Account> AccountList =
new List<Account>();
public Form1()
{
InitializeComponent();
}
}
public class Account
{
//……
}
}
在Form2中使用AccountList
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
//使用
Form1.AccountList.Add(new Account());
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询