コード例 #1
0
 public StewedPork(FoodClass f) : base(f)
 {
     this.Price    = 30;
     this.Descript = "焢肉";
 }
コード例 #2
0
 public Cheese(FoodClass f) : base(f)
 {
     this.Price    = 10;
     this.Descript = "起司";
 }
コード例 #3
0
 public PorkChop(FoodClass f) : base(f)
 {
     this.Price    = 50;
     this.Descript = "豬排";
 }
コード例 #4
0
 public SideDish(FoodClass f)
 {
     this.food = f;
 }