コード例 #1
0
 public MobilePhone(Manufacturer manufacturer, string model, Battery battery, Display display, OS oS)
     : this(manufacturer, model)
 {
     this.Battery = battery;
     this.Display = display;
     this.OS = oS;
 }
コード例 #2
0
 public MobilePhone(Manufacturer manufacturer, string model, Battery battery)
     : this(manufacturer, model)
 {
     this.Battery = battery;
 }