Exemplo n.º 1
0
 public static IDisposable BranchIfFalse(this ILProcessor il)
 {
     return(il.Branch(OpCodes.Brfalse));
 }
Exemplo n.º 2
0
 public static IDisposable BranchIfTrue(this ILProcessor il)
 {
     return(il.Branch(OpCodes.Brtrue));
 }