Activity overview
Latest activity by setter
OK, I figured that "Transition to unmanaged code" is referring to marshalling in UI thread due to invokes.
Still it's not possible to spot this from the source code as profiler doesn't mark it up or show any time allocation on that line, so it's a bit of guess work. / comments
OK, I figured that "Transition to unmanaged code" is referring to marshalling in UI thread due to invokes.
Still it's not possible to spot this from the source code as profiler doesn't mark it up o...
"return" takes 10% of the execution time
I have a method that that is defined like this:void DoSomething(int Count, object Message ){}
According to ANTS %10 of the execution time happened in this codereturn
This retu...
UnsafeNativeMethods.PostMessage-Transition to unmanaged code
I'm trying to profile a section of the code that ANTS says %5 of CPU time.
It's reported as
UnsafeNativeMethods.PostMessage > Transition to unmanaged code
In the call graph, all the callers using a...