diff --git a/blocks/Instr.cs b/blocks/Instr.cs index 23c44bb6..536a9c9c 100644 --- a/blocks/Instr.cs +++ b/blocks/Instr.cs @@ -111,6 +111,10 @@ namespace de4dot.blocks { return DotNetUtils.getLdcI4Value(instruction); } + public bool isLdarg() { + return DotNetUtils.isLdarg(instruction); + } + public bool isStloc() { return DotNetUtils.isStloc(instruction); }