예제 #1
0
파일: ConsCommand.cs 프로젝트: daisy/obi
 /// <summary>
 /// Do the car command first, then the cdr.
 /// </summary>
 public override void Do()
 {
     mCar.Do();
     mCdr.Do();
 }