internal ILProcessor(MethodBody body) { this.body = body; this.instructions = body.Instructions; }
static bool IsEmptyMethodBody(MethodBody body) { return(body.instructions.IsNullOrEmpty() && body.variables.IsNullOrEmpty()); }