Exemplo n.º 1
0
 public void EmitSub(Type type, bool @checked)
 {
     if (@checked)
     {
         Emit(SubOvfInstruction.Create(type));
     }
     else
     {
         Emit(SubInstruction.Create(type));
     }
 }
Exemplo n.º 2
0
 public void EmitSub(Type type, bool @checked)
 {
     Emit(@checked ? SubOvfInstruction.Create(type) : SubInstruction.Create(type));
 }