Esempio n. 1
0
 public Instruccion(Instruccion i)
 {
     this.CodigoDeOperacion = i.CodigoDeOperacion;
     this.Operando          = new int[3];
     for (int j = 0; j < 3; j++)
     {
         this.Operando[j] = i.Operando[j];
     }
 }
 public Instruccion(int dummy = 0)
 {
     CodigoDeOperacion = 0;
     Operando          = new int[] { 0, 0, 0 };
 }