Пример #1
0
 protected Instruction()
 {
     Type = Instructions.None;
     Left = null;
     Right = null;
 }
Пример #2
0
 public Instruction(Instructions type, Operand left, Operand right)
 {
     Type = type;
     Left = left;
     Right = right;
 }