Пример #1
0
 protected AbstractInstruction(AbstractInstructionCommand command, object parameter)
 {
     this.command = command;
     this.parameter = parameter;
     this.timing = new Stopwatch();
     Interlocked.Increment(ref autoIncrIdentity);
 }
Пример #2
0
 public InstructionSet(AbstractInstructionCommand command)
 {
     this.instrs = new List<IInstruction>();
     this.command = command;
 }