I'm trying to disassemble a file which has been dotFuscated. One of the classes looks like
public class b : Form
{
    protected override void a(ref Message b)
        ...
    }
}

but now I don't know which of the methods of Form this b.a() overrides. I could try to find that manually, but it think it must be written somewhere in the file. Any suggestions?
kresjer
0

Comments

1 comment

  • kresjer
    I've looked at the file with ILDASM, and there it's all written out:
    .override [System.Windows.Forms]System.Windows.Forms.TextBox::WndProc
    

    Is there a way that Reflector uses this information to name the methods appropriately?
    kresjer
    0

Add comment

Please sign in to leave a comment.