コード例 #1
0
ファイル: ILUtil.cs プロジェクト: tom-englert/AutoLazy
 public static IDisposable BranchIfFalse(this ILProcessor il)
 {
     return(il.Branch(OpCodes.Brfalse));
 }
コード例 #2
0
ファイル: ILUtil.cs プロジェクト: tom-englert/AutoLazy
 public static IDisposable BranchIfTrue(this ILProcessor il)
 {
     return(il.Branch(OpCodes.Brtrue));
 }