コード例 #1
0
ファイル: Myclasses.cs プロジェクト: GreenLaizer/Bankomat
 public int getCountMoney(mbType mtype)
 {
     return(box[(int)mtype]);
 }
コード例 #2
0
ファイル: Myclasses.cs プロジェクト: GreenLaizer/Bankomat
 public void addMoney(mbType mtype, int count)
 {
     box[(int)mtype] = box[(int)mtype] + count;
 }