I have an application that uses several components some written in C# and some written in VB6 and they are interacting via COM Interop.
In the context of some performance problem analysis, I would like to find out the number of transitions between managed and native code (and vice versa) that occur during the execution of my app.
Is there a way to get that info? I looked for a Perfmon counter but only found the number of marshalling.
Thanks.