0
Button[] c = new Button[255] (this);

出于某种原因,Xamarin Studio 要求我提供方法名称,并将我指向“新”一词的开头

4

2 回答 2

2
var b = new Button[255];

b[0] = new Button(this);
于 2013-09-18T10:36:33.233 回答
1

您正在混合语法...您不能在一行中使用枚举器和方法调用...

Button[] c = new Button[255]; // Initialise an array of buttons, length 255.
c[0] = new Button(this); // Add a new button to index 0 of the array.
于 2013-09-18T10:37:41.207 回答