Create() 공개 정적인 메소드

public static Create ( Type type ) : Instruction
type Type
리턴 Instruction
예제 #1
0
 public void EmitMul(Type type, bool @checked)
 {
     if (@checked)
     {
         Emit(MulOvfInstruction.Create(type));
     }
     else
     {
         Emit(MulInstruction.Create(type));
     }
 }
예제 #2
0
 public void EmitMul(Type type, bool @checked)
 {
     Emit(@checked ? MulOvfInstruction.Create(type) : MulInstruction.Create(type));
 }