这是我在单击按钮时创建第二个表单的代码部分。
private List<Team> Teams = new List<Team>();
private void button2_Click(object sender, EventArgs e)
{
Form Form2 = new Form2(Teams);
Form2.Show();
}
表格 2:
public Form2(List<Team> teams)
{
InitializeComponent();
}
我总是得到这个错误:
错误 1 可访问性不一致:参数类型“
System.Collections.Generic.List<Projekt.Team>
”比方法“Projekt.Form2.Form2(System.Collections.Generic.List<Projekt.Team>)
”更难访问