回答編集履歴
1
文法上のミスを修正
test
CHANGED
@@ -34,7 +34,7 @@
|
|
34
34
|
|
35
35
|
//既にあるコンストラクタに追加で配列の初期化
|
36
36
|
|
37
|
-
this.BuyButtons = [this.button1, ...
|
37
|
+
this.BuyButtons = new[]{this.button1, ... }; //自販機のボタンを配列として保存
|
38
38
|
|
39
39
|
foreach (Button item in this.BuyButtons)
|
40
40
|
|