不能将列表声明为全局变量?

时间:2016-10-12 17:51:46

标签: c# console-application

class Program
{
    List<int> ages = new List<int>();

无法访问其他方法,请告诉我原因? 我收到错误消息cs0120&#34;非静态字段,方法或属性&#39; program.ages&#39;&#34;

需要对象引用

由于

1 个答案:

答案 0 :(得分:1)

更改列表声明staticpublic

class Program
{
   public static List<int> ages = new List<int>();

   // other method and stuff you want
}