Create() public static method

public static Create ( Type type ) : Instruction
type Type
return Instruction
Esempio n. 1
0
 public void EmitMul(Type type, bool @checked)
 {
     if (@checked)
     {
         Emit(MulOvfInstruction.Create(type));
     }
     else
     {
         Emit(MulInstruction.Create(type));
     }
 }
Esempio n. 2
0
 public void EmitMul(Type type, bool @checked)
 {
     Emit(@checked ? MulOvfInstruction.Create(type) : MulInstruction.Create(type));
 }