Add isLadrg()

This commit is contained in:
de4dot 2012-05-03 08:00:50 +02:00
parent e221fc7f52
commit 05ec2794eb

View File

@ -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);
}