示例#1
0
 public Car10(string model, Engine10 engine, string weight, string color)
 {
     this.Model  = model;
     this.Engine = engine;
     this.Weight = weight;
     this.Color  = color;
 }
示例#2
0
 public Car10(string model, Engine10 engine, string weight)
 {
     this.Model  = model;
     this.Engine = engine;
     this.Weight = weight;
 }
示例#3
0
 public Car10(string model, Engine10 engine)
 {
     this.Model  = model;
     this.Engine = engine;
 }