예제 #1
0
 public abstract void ChangeHead(Locomotive value);
예제 #2
0
 public override void ChangeHead(Locomotive value)
 {
     _head = value;
 }
예제 #3
0
 public Train(Locomotive head)
 {
     _head = head;
 }