Click here to Skip to main content
15,880,725 members
Articles / Programming Languages / Visual Basic
Article

A simple .NET Profiler

Rate me:
Please Sign up or sign in to vote.
2.67/5 (14 votes)
10 Apr 20061 min read 67.4K   626   31   10
A DLL helping to measure process time in your applications.

Introduction

When optimizing my programs, I usually had the question: 'Which of my functions needs most of the time?'. Searching the web, I did not find any remarkable solution for my issue. So I had to resolve it by myself, I wrote a small DLL to be called from any of my .NET programs.

It measures the time needed inside the actual function and writes the result to a disk file, averaging (maximizing, minimizing etc.) the time used to process the function.

The DLL is rather simple, the source code consists of 160 lines (including comment lines).

Using the code

To use pscProfilEx, you must:

  • Reference 'pscProfilEx'.
  • Define 'Public <myProfile> As New pscProfilEx.CProfilEx'.
  • At the start of your application, insert <myProfile>.profileOpen("<logFileName>").
  • At the start of the function to be profiled, insert <myProfile>.profileStart("<function name>").
  • At the end of this function, insert <myProfile>.profileEnd().
  • When leaving your application, insert <myProfile>.profileClose().

Maybe you want to avoid an 'endless' profiling inside a program running in a loop. Then, e.g., following a timer, counter or other criterion, you may insert:

XML
<myProfile>.profileClose()
    <myProfile>.profileOpen(<newLogFileName>)

wherever you want (and if applicable). This will close the current log file and create a new one.

History

2005-Jan-31 - First release - 2.0.0.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Germany Germany
Peter Schlang, working with computers since 1974
Developing mainly for newspapers since 1981, first as employee of ATEX
Freelancer since 1987
Preferred language is VB: Starting with VB 1.0 and VBDOS, up to VB.NET

Comments and Discussions

 
Generalplenty of existing products Pin
Kuno Meyer22-Aug-08 5:02
Kuno Meyer22-Aug-08 5:02 
GeneralVery nice Pin
dwaterfield21-Apr-06 9:26
dwaterfield21-Apr-06 9:26 
GeneralDoes not work ... Pin
neil young19-Apr-06 11:08
neil young19-Apr-06 11:08 
GeneralRe: Does not work ... Pin
Peter Schlang20-Apr-06 6:52
Peter Schlang20-Apr-06 6:52 
GeneralTwo articles Pin
Vladimir Afanasyev3-Feb-05 23:32
Vladimir Afanasyev3-Feb-05 23:32 
GeneralRe: Two articles Pin
Peter Schlang3-Feb-05 23:41
Peter Schlang3-Feb-05 23:41 
GeneralRe: Two articles Pin
Vladimir Afanasyev4-Feb-05 0:01
Vladimir Afanasyev4-Feb-05 0:01 
GeneralReadable data Pin
Klapouchy3-Feb-05 22:29
Klapouchy3-Feb-05 22:29 
GeneralRe: Readable data Pin
Peter Schlang3-Feb-05 22:56
Peter Schlang3-Feb-05 22:56 
Good idea!
What do you think about the output as XML data?


Peter Schlang
Software-Entwicklung und -Beratung

(This item consists of 100% recyclable bits and bytes!)
GeneralRe: Readable data Pin
Klapouchy3-Feb-05 23:18
Klapouchy3-Feb-05 23:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.