示例#1
0
 public Processor(Processor processor)
 {
     this.Parent = processor;
     if (this.Parent != null)
     {
         this.Parent.Child = this;
     }
     else
     {
         this.Child = null;
     }
 }
示例#2
0
 public ProcessorA(Processor parent)
     : base(parent)
 {
 }