コード例 #1
0
 public Furniture(Merchandise merchandise, string nameOfCollection)
     : base(merchandise)
 {
     this.nameOfCollection = nameOfCollection;
 }
コード例 #2
0
 public Merchandise(Merchandise merchandise)
     : this(merchandise.name, merchandise.price, merchandise.quantity)
 {
 }
コード例 #3
0
 public Sandpaper(Merchandise merchandise, int width, int resilient)
     : base(merchandise)
 {
     this.width     = width;
     this.resilient = resilient;
 }