Overriding a private method with Reflection?

Well, it would need to be virtual to be possible to override it (by writing a dynamic type that inherits from the class), and you can't have a private virtual (it makes no sense). You could perhaps override an internal virtual but I suspect even this may hit security issues. So ultimately, I'd say no.

Not by using Reflection alone. Perhaps the best you could do is to use Reflection, combined with Reflection. Emit or the CodeDom to duplicate the class into a new namespace.

When you come across the private method you want to replace, you don't copy it, you emit your replacement.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions