public static IDisposable BranchIfFalse(this ILProcessor il) { return(il.Branch(OpCodes.Brfalse)); }
public static IDisposable BranchIfTrue(this ILProcessor il) { return(il.Branch(OpCodes.Brtrue)); }