求大神帮忙,结构体中数组怎么实例化?或者能把我下面代码改对了就OK
public struct STONES{
public int x;
public int y;
};
public struct Lines
{
public STONES[] Point = new STONES[2];//错误
public int[] items= new int[6];//错误
public int value;
public int color;
};
2014-03-02 15:21
2014-03-02 15:33
2014-03-02 15:36
2014-03-02 15:45
2014-03-02 19:09
2014-03-02 22:47