How to “patch/hack” a .Net assembly
ildasm "foo.exe/dll" /out="foo.il"
Then edit the IL code. To recompile again:
ilasm [/dll] "foo.il"
Technobabble from a .Net developer on the loose…
How to “patch/hack” a .Net assembly
ildasm "foo.exe/dll" /out="foo.il"
Then edit the IL code. To recompile again:
ilasm [/dll] "foo.il"