Continue if same method

This commit is contained in:
de4dot 2012-07-07 09:09:55 +02:00
parent 02c89550cb
commit 1867a06e84

View File

@ -87,6 +87,8 @@ namespace de4dot.code.deobfuscators.SmartAssembly {
return false;
foreach (var method in DotNetUtils.getCalledMethods(module, attachAppMethod)) {
if (attachAppMethod == method)
continue;
if (method.Name == ".cctor" || method.Name == ".ctor")
continue;
if (!method.IsStatic || !DotNetUtils.isMethod(method, "System.Void", "()"))