class Program
{
List<int> ages = new List<int>();
无法访问其他方法,请告诉我原因? 我收到错误消息cs0120&#34;非静态字段,方法或属性&#39; program.ages&#39;&#34;
需要对象引用由于
答案 0 :(得分:1)
更改列表声明static
和public
class Program
{
public static List<int> ages = new List<int>();
// other method and stuff you want
}