Exemplo n.º 1
0
 protected AbstractInstruction(AbstractInstructionCommand command, object parameter)
 {
     this.command   = command;
     this.parameter = parameter;
     this.timing    = new Stopwatch();
     Interlocked.Increment(ref autoIncrIdentity);
 }
Exemplo n.º 2
0
 public InstructionSet(AbstractInstructionCommand command)
 {
     this.instrs  = new List <IInstruction>();
     this.command = command;
 }