Ejemplo n.º 1
0
 public static Instruction New(Runtime.RuntimePointer functionPointer) => new Instruction(functionPointer, null);
Ejemplo n.º 2
0
 public Instruction(Runtime.RuntimePointer functionPointer, object argument)
 {
     this.FunctionPointer = functionPointer;
     this.Argument        = argument;
 }
Ejemplo n.º 3
0
 public static Instruction New(Runtime.RuntimePointer functionPointer, object argument) => new Instruction(functionPointer, argument);