I have a C# application compiled with visual studio. I want to intercept and log calls and serialized method parameters to some specific methods in that app. Is it possible to intercept method calls in another process (maybe by using App domains?).
In other words, I want to achieve similar goal in .NET as madCodeHook and Detours does for win32.