0

I am working on de compiling my old mvc4 source code which has only dll files in it, i would like to know if it is possible i have already used reflector and got some of the source files but it looks like the source is all messed up.

any thoughts.

thanks

steave finner
  • 489
  • 1
  • 6
  • 18
  • possible duplicate of [How do I decompile a .NET EXE into readable C# source code?](http://stackoverflow.com/questions/179741/how-do-i-decompile-a-net-exe-into-readable-c-sharp-source-code) – Vova Bilyachat Jan 10 '14 at 11:53
  • any thoughts... yeah, don't lose your source code! – musefan Jan 10 '14 at 11:55
  • You won't get exact source as well, the compiler expands on a lot of code (lock -> Monitor.Enter/Exit) etc. – Lloyd Jan 10 '14 at 11:56
  • i think you missed the concept bilyachat, i said its mvc dll not .net exe. that too it has EF on top :( musefan i didnt lost it is done by some other mate. – steave finner Jan 10 '14 at 11:59

2 Answers2

1

you can also use ILspy , the open-source .NET assembly browser and decompiler.

Mironline
  • 2,755
  • 7
  • 35
  • 61
0

try to decompile dll using Decompiler by Telerik http://www.telerik.com/products/decompiler.aspx

Nilesh Gajare
  • 6,302
  • 3
  • 42
  • 73