我需要有关结构初始化数组的帮助。在类似下面的代码中,我们如何完成在comment中定义的初始化?

class structExample
{
    struct state{
        int previousState;
        int currentState;
    }
     static state[] durum;

     public static void main(String[] args)
     {
         durum = new state[5];

         // how we can assign new value to durum[0].previousState = 0; doesn't work ??


     }

}

}
谢谢..

最佳答案

C#中成员的默认可访问性是私有的,这就是赋值语句失败的原因。您需要通过向其添加internalpublic来使这些字段可访问。

struct state{
    internal int previousState;
    internal int currentState;
}

10-06 03:06