Button[] c = new Button[255] (this);
何らかの理由で、Xamarin Studio はメソッド名を尋ね、"New" という単語の先頭を指し示します。
Button[] c = new Button[255] (this);
何らかの理由で、Xamarin Studio はメソッド名を尋ね、"New" という単語の先頭を指し示します。
var b = new Button[255];
b[0] = new Button(this);
構文が混在しています... 列挙子とメソッド呼び出しを 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.