How to convert my DLL into C# code?

  • Thread starter Thread starter DelphiMan
  • Start date Start date
I just made big mistake on my c# source code.
I did undo check-out my files accidently.

The only things I have are the DLL files.
Other source files are nothing or almost all empty.
I spent past 3~4 days without checking-in.

I heard that there is a software tool that disassemble the DLL into c# code.
Is there anyone know of it?

TIA
 
I just made big mistake on my c# source code. I did undo check-out my
files accidently.

What do you mean by undo? What happens if you check out at a date of the
previous commit?

The only things I have are the DLL files. Other source files are
nothing or almost all empty. I spent past 3~4 days without
checking-in.

Well, to be honest, there is no excuse. Never do this again, check in at
least once daily.

I heard that there is a software tool that disassemble the DLL into
c# code. Is there anyone know of it?

Reflector for .NET, it's free:
http://www.aisto.com/roeder/dotnet/

and the additional plugin for getting a source view:
http://www.denisbauer.com/NETTools/FileDisassembler.aspx


hth and good luck
Markus
 
Back
Top