Activity overview
Latest activity by simon.carter
Thanks - I had that set already. Anything I can do to help you diagnose this? I could let you have my results files if that helps. / comments
Thanks - I had that set already. Anything I can do to help you diagnose this? I could let you have my results files if that helps.
Thanks for your attention.
Each exe is build by different source code on disk
I should have said that the two paths are more like
C:\SolutionA\source\bin\release\myexe.exe
C:\SolutionB\source\bin\release\myexe.exe
The respective exes are being generated by the source in their parent folders and are not being rebuilt. Nor are they being cached in the GAC or anything like that.
Where is the option to include source in the results? I can't find it. / comments
Thanks for your attention.
Each exe is build by different source code on disk
I should have said that the two paths are more like
C:\SolutionA\source\bin\release\myexe.exe
C:\SolutionB\source\bin\r...
Three(?) bugs when running multiple instances of ANTS PP 6
I am trying to profile two different versions of the same .net4 c# app:
C:\SolutionA\myexe.exe
C:\SolutionB\myexe.exe
I have two instances of performance profiler open at once – version 6.2.0.13....
Thanks for looking, though I'd be surprised if that were the full story - I'm executing these methods many many thousands of times and the JIT overhead should be lost in the noise. And I thought ANTS made it clear which parts of the timing were JIT overhead?
The main thing is that ANTS gives me the results I need, so cheers.
Simon / comments
Thanks for looking, though I'd be surprised if that were the full story - I'm executing these methods many many thousands of times and the JIT overhead should be lost in the noise. And I thought AN...
My apologies - I should have said passing a value type by reference.
struct MyValueType
{
int _Value1;
int _Value2;
}
class MyClass
{
public MyMethodByRef(ref MyValueType A)
{
...
}
public MyMethodCopy(MyValueType A)
{
...
}
}
MyMethodByRef is often slower. / comments
My apologies - I should have said passing a value type by reference.
struct MyValueType
{
int _Value1;
int _Value2;
}
class MyClass
{
public MyMethodByRef(ref MyValu...
Passing by ref in C# - why is it slower?
Please redirect me if this is the wrong place for this kind of post as this isn't really an ANTS issue, just something we've found by using ANTS.
I'm finding that passing some objects, especially s...