I'm trying to figure out how to attach an ANTS profiler to an already running IISExpress instance.
When I try to manually do that, it keeps saying that the port is already in use, which of course is obvious. But why is ANTS trying to start up a new…
I am building a survey application. I have a page which gives Admin, Clients, Surveyor and other managers a view of surveys scheduled against/for them. It also displays its status and other things. I have 3 image buttons in a gridview Action column.…
I just discovered a weird behaviour in my application while doing a perfomance analysis with ANTS Performance Profiler:
public void set_SelectedObject(object value)
{
if (value == null) //65ms
{
//do anything
}
}
This check takes…
I've installed and activated the ANTS Performance Profiler 7, but I can't see the Addin in Visual Studio 2010 on the menu bar.
If I open the Addin-Manager in VS10 (Tools->Addin-Manager), I can see the addin, but not in the menu bar. I've reinstalled…
I host a asp.net(v4.0.30319) App on IIS7, and using the following WinDBG command find so manay objects not be released by GC.
!dumpheap -type XXXX
000000.... 671 246928 XXXX
XXXX is the objects type's name , the amount of the objects is…
I'm running the ANTS Performance Profiler in my windows service to optimize it. So I found out that the execution of one of my workflow is about 436 milliseconds. I drilled down each methods being executed inside the invoke method of my workflow and…
I have an asp.net site that i'm trying to profile with Ants Profiler 6.3 but I am having some issues. I can't profile from IIS using either original port or a custom port. IE will open and then show a page saying Internet Explorer cannot show the…
I have an object being held in memory. The object is "Trigram()"
This is a small number of the strings;
tmodels("en") = New String() {" th", "the"}
is then used like this
For Each key As String In tmodels.Keys
Dim t As String() =…