Normally when you reference a COM DLL in a C# project Visual Studio automatically generates the runtime-callable wrapper (RCW) and compiles it to an Interop.
assembly.
Is there any way to debug into the source code of the RCW?
Approaches I am thinking of would be to capture PDB files, or to actually include the source of the interop library in the solution.
But from what I can see Visual Studio's behavior when generating the assembly is opaque and not configurable (at least not in any obvious way).
Thanks!