Comments
Sort by recent activity
Hi,
This has now been officially released, so you can download the full version from http://www.red-gate.com/products/dotnet-development/ants-performance-profiler/
Cheers,
Ben / comments
Hi,
This has now been officially released, so you can download the full version from http://www.red-gate.com/products/dotnet-development/ants-performance-profiler/
Cheers,
Ben
There's a DLL in the ANTS install directory called RedGate.Profiler.UserEvents.dll. If you reference it in your project, you can place an event marker on the timeline by calling
RedGate.Profiler.UserEvents.ProfilerEvent.SignalEvent("A message");
You can use that to see when a particular line of code ran. This is described at the bottom of http://documentation.red-gate.com/display/APP8/Working+with+the+timeline#.
Unfortunately this doesn't let you bookmark regions at this time, though we're considering adding that capability in the future. / comments
There's a DLL in the ANTS install directory called RedGate.Profiler.UserEvents.dll. If you reference it in your project, you can place an event marker on the timeline by calling
RedGate.Profiler.Us...