示例#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;
 }