Home All Groups Group Topic Archive Search About
Author
24 Jan 2006 4:47 PM
almurph
Folks,

   I'm looking for a good, free VB.NET profiler to look at my code as I
run it and make intelligent suggestions as how to make it go faster
etc...
   Anyone with any suggestions/experiences/recommendations that thay
would like to share? Any comments much appreciated...

Al.

Author
24 Jan 2006 5:17 PM
Jay B. Harlow [MVP - Outlook]
CLR Profiler is free:

CLR Profiler (v1.1)
http://www.microsoft.com/downloads/details.aspx?FamilyId=86CE6052-D7F4-4AEB-9B7A-94635BEEBDDA&displaylang=en

CLR Profiler for .NET 2.0
http://www.microsoft.com/downloads/details.aspx?familyid=A362781C-3870-43BE-8926-862B40AA0CD0&displaylang=en


You may also want to review:
http://www.microsoft.com/downloads/details.aspx?familyid=A362781C-3870-43BE-8926-862B40AA0CD0&displaylang=en

http://www.microsoft.com/downloads/details.aspx?familyid=8A2E454D-F30E-4E72-B531-75384A0F1C47&displaylang=en
--
Hope this helps
Jay [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net


<almu***@altavista.com> wrote in message
Show quoteHide quote
news:1138121225.992327.265460@g49g2000cwa.googlegroups.com...
| Folks,
|
|   I'm looking for a good, free VB.NET profiler to look at my code as I
| run it and make intelligent suggestions as how to make it go faster
| etc...
|   Anyone with any suggestions/experiences/recommendations that thay
| would like to share? Any comments much appreciated...
|
| Al.
|
Author
24 Jan 2006 6:20 PM
Herfried K. Wagner [MVP]
<almu***@altavista.com> schrieb:
>   I'm looking for a good, free VB.NET profiler to look at my code as I
> run it and make intelligent suggestions as how to make it go faster
> etc...

CLR Profiler (v2.0)
<URL:http://www.microsoft.com/downloads/details.aspx?FamilyID=a362781c-3870-43be-8926-862b40aa0cd0>

CLR Profiler for .NET 1.*:

<URL:http://www.microsoft.com/downloads/details.aspx?FamilyId=86CE6052-D7F4-4AEB-9B7A-94635BEEBDDA>

<URL:http://msdn.microsoft.com/library/en-us/dnpag/html/scalenethowto13.asp>

Allocation Profiler src
<URL:http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=3254325d-a4aa-4bb3-aa86-c72d5104ec74>

--
M S   Herfried K. Wagner
M V P  <URL:http://dotnet.mvps.org/>
V B   <URL:http://classicvb.org/petition/>
Author
25 Jan 2006 8:06 PM
Jim Wooley
"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
news:Oxr1qLRIGHA.2036@TK2MSFTNGP14.phx.gbl...
> <almu***@altavista.com> schrieb:
> CLR Profiler (v2.0)
> <URL:http://www.microsoft.com/downloads/details.aspx?FamilyID=a362781c-3870-43be-8926-862b40aa0cd0>
> Allocation Profiler src
> <URL:http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=3254325d-a4aa-4bb3-aa86-c72d5104ec74>

What (if anything) is the advantage of using Allocation profiler? The CLR
profiler appears to be an extension of the Allocation Profiler.

Another tool I discovered recently is the Process Explorer from SysInternals
which has a performance monitor of .Net items, including GC collections.
It's at http://www.sysinternals.com/Utilities/ProcessExplorer.html. By
viewing the properties of a .Net assembly, you will see a .Net tab which
includes plenty of cryptic information to help tune your app. Much of the
..Net functionality is also available in Perfmon.

Jim Wooley