how can i modify memory loaded methods in given assembly so that clr when instantiates new objects for some class it makes new objects with modified code in it?
A:
I don't think you can do that. But you can generate new classes in a new, in-memory assembly using Reflection.Emit.
That is a lot of work though. You can get help from a framework such as Castle DynamicProxy, which allows you to generate proxies for your classes at runtime. This way you can run any code before or after the original methods run, or change the methods totally by not calling into the original method.
driis
2010-06-09 17:33:38
A:
You can use Mono Cecil to modify the assembly before you load it.
You can save the modified assembly to a byte array, then call Assembly.Load
to load the byte array.
SLaks
2010-06-09 17:34:28
i'd rather not use 3rd party libs
joe doe
2010-06-09 17:45:50
OK, then give up, or rewrite Mono Cecil from scratch. There is no alternative.
SLaks
2010-06-09 17:59:16