コード例 #1
0
ファイル: Motorcycle.cs プロジェクト: brahammar/dev15
 public Motorcycle(Color color, Transmission transmission, int numberOfWheels, int horsePower)
 {
     this.Color = color;
     this.Transmission = transmission;
     this.NumberOfWheels = numberOfWheels;
     this.HoresPower = horsePower;
 }
コード例 #2
0
ファイル: Bike.cs プロジェクト: brahammar/dev15
 public Bike(Color color, Transmission transmission, int numberOfWheels)
 {
     this.Color = color;
     this.Transmission = transmission;
     this.NumberOfWheels = numberOfWheels;
 }