コード例 #1
0
ファイル: ParserApi.cs プロジェクト: xeno-by/truesight-lite
 public static IMethodBody ParseRawIL(this byte[] rawIL, IEnumerable<ExceptionHandlingClause> rawEhc, ParserContext ctx)
 {
     return new Impl.MethodBody(rawIL, rawEhc, ctx);
 }
コード例 #2
0
ファイル: ParserApi.cs プロジェクト: xeno-by/truesight-lite
 public static IMethodBody ParseRawIL(this byte[] rawIL, ParserContext ctx)
 {
     return new Impl.MethodBody(rawIL, ctx);
 }