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?
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?