コード例 #1
0
 internal ILProcessor(MethodBody body)
 {
     this.body         = body;
     this.instructions = body.Instructions;
 }
コード例 #2
0
 static bool IsEmptyMethodBody(MethodBody body)
 {
     return(body.instructions.IsNullOrEmpty() &&
            body.variables.IsNullOrEmpty());
 }