VB.NET profiler

  • Thread starter Thread starter almurph
  • Start date Start date
A

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.
 
CLR Profiler is free:

CLR Profiler (v1.1)
http://www.microsoft.com/downloads/...52-D7F4-4AEB-9B7A-94635BEEBDDA&displaylang=en

CLR Profiler for .NET 2.0
http://www.microsoft.com/downloads/...1C-3870-43BE-8926-862B40AA0CD0&displaylang=en


You may also want to review:
http://www.microsoft.com/downloads/...1C-3870-43BE-8926-862B40AA0CD0&displaylang=en

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


| 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.
|
 
Herfried K. Wagner said:

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
 
Back
Top