コード例 #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));
 }