(.net) Intermediate language editor exe?

I know that we have ILdasm, but is there any tool that allows me to edit .exe or .dll files without having to go through everything I need to convert it to IL code, with resources enabled and etc. etc., manually edit and then recompile again?

+4
source share
3 answers

You can always use Reflector to parse whole namespaces into source code (not IL), but then you are still stuck without a direct editor, you need to copy / paste into the code file and recompile.

On the other hand, it looks like I was wrong, Reflector has a Reflexil add - in that looks like you are doing what you want.

+3
source

check out this SourceForge project. I think this is what you are looking for:

http://sourceforge.net/projects/dile/

+1
source

Perhaps you should check out Mono.Cecil . This is a managed library for managing IL. You can add, delete and modify methods as you wish.

Provided this is not an IDE or anything else, but it should be a starting point.

0
source

All Articles