Reputation: 65431
If you want to make a small change to a .net application, is it possible to edit the MSIL directly?
Upvotes: 1
Views: 2170
Reputation: 3419
Use ildasm.exe to decompile and recompile with ilasm.exe. For strong-named assemblies you will need the key file if you want that the recompiled assembly has the same identity as the original assembly.
Upvotes: 4