Shiraz Bhaiji
Shiraz Bhaiji

Reputation: 65431

Manually edit MSIL in compiled DLL

If you want to make a small change to a .net application, is it possible to edit the MSIL directly?

Upvotes: 1

Views: 2170

Answers (1)

mgronber
mgronber

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

Related Questions