Create() public static method

public static Create ( Type type ) : Instruction
type Type
return Instruction
Beispiel #1
0
 public void EmitAdd(Type type, bool @checked)
 {
     if (@checked)
     {
         Emit(AddOvfInstruction.Create(type));
     }
     else
     {
         Emit(AddInstruction.Create(type));
     }
 }
Beispiel #2
0
 public void EmitAdd(Type type, bool @checked)
 {
     Emit(@checked ? AddOvfInstruction.Create(type) : AddInstruction.Create(type));
 }