예제 #1
0
파일: Program.cs 프로젝트: shubidu/csharp
 static void Main(string[] args)
 {
     Bicycle b = new Bicycle(15, "Renault");
     b.MaxSpeed();
 }
예제 #2
0
파일: Bicycle.cs 프로젝트: shubidu/csharp
 public Bicycle(Bicycle b)
     : this(b.Gears, b.Brand)
 { }