From 05ec2794eb101b903041f12aa6d78e6cb52fda01 Mon Sep 17 00:00:00 2001 From: de4dot Date: Thu, 3 May 2012 08:00:50 +0200 Subject: [PATCH] Add isLadrg() --- blocks/Instr.cs | 4 ++++ 1 file changed, 4 insertions(+) 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); }