Comments
Sort by recent activity
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? / comments
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 informati...
That's not really working. I'm trying to get the source of a program which has been dotFuscated, and now I get class files like public class b
{
public const int a = 6;
public b(ac A_0)
{
....
}
private void a()
{
...
}
public void a(ak A_0)
{
...
}
public List<String> a(List<String> A_0)
{
...
}
}
which do not compile ("The type 'b' already contains a definition for 'a'").
I was hoping that there was an export utility that could fix this. / comments
That's not really working. I'm trying to get the source of a program which has been dotFuscated, and now I get class files likepublic class b
{
public const int a = 6;
public b(ac...