首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
dreamingost的代码贴
→
C#
[C#]求大神帮忙,结构体中数组怎么实例化?或者能把我下面代码改对了就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年3月2日 15:16
1
dreamingost
全部(1)
C#(1)