I need to change the code of the .NET DLL. I am able to see the code by compilable the DLL with .NET reflector, but I am not able to change the code of the DLL. With .NET Reflector, I decompile the code and saved in to my hard disk, but when i am able to recompile the code its giving errors.

Few code is decompiled in binary format few code is decompiled with c#. Is there any tool to change and recompile the DLL?

Here are the tools I used for trying to decompile the DLL:

  • ILSpy
  • DisSharp
  • Reflector7.1 With the Reflexil plugin
  • Spices.Net.Suite.5.8
  • Deploy .NET 1.0.0
  • devextras.codereflect
  • dotPeek-1.0.0.2545
  • intellilock
  • JustDecompile_BETA_2011.1.728.1

Unfortunately, none of the tools giving perfect source code to recompile the DLL code.

link|improve this question
what errors are you getting? – Daniel A. White Sep 12 '11 at 13:54
As far as I'm aware there are easier ways to get hold of the dot net framework libraries source code. See this article by Scott Gu: weblogs.asp.net/scottgu/archive/2007/10/03/… – Jamie Dixon Sep 12 '11 at 13:55
Are you trying to get the source code of the .Net Framework assemblies, or some other .Net dll? – ShellShock Sep 12 '11 at 14:06
1  
Why do you want to do this? Why don't you have the source code? – Jeremy E Sep 12 '11 at 14:21
hi the code is combination of c# and middle level language it contains pointers and many address symbols like @@@ its giving the errors. i am trying to convert my private dll – user900492 Sep 13 '11 at 6:11
feedback

2 Answers

I've had limited success in recompiling DLLs. A better way of going about it is to using Reflector and the Reflexil plugin. You need to have a bit better knowledge of the IL code that makes up .NET assemblies but Reflexil does a great job of describing the OP codes. I have a little walk through on my blog about how I used to modify the PowerShell Cmdlet Help Editor: http://csharpening.net/?p=348

link|improve this answer
feedback

Ever heard of the Mole projetc, check it out Moles - Isolation framework for .NET

Replace any .NET method with your own delegate!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.