Activity overview
Latest activity by 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? / 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...
                      
                    
                  
                    
                      
                        Resolving override method names
                        
                        
                        
                        
                      
                      
                      
                
                  I'm trying to disassemble a file which has been dotFuscated. One of the classes looks likepublic class b : Form
{
    protected override void a(ref Message b)
        ...
    }
&#...
                      
                    
                  
                    
                      
                        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...
                      
                    
                  
                    
                      
                        Addin to dump files?
                        
                        
                        
                        
                      
                      
                      
                
              Hi, I'm trying to dump the files of a program to disk, so I looked for a addin that could do that.
The FileDisassembler add-in seems to be not supported anymore (the website is down).
I coulnd't ge...