Click here to Skip to main content
Licence 
First Posted 3 Feb 2005
Views 51,552
Bookmarked 30 times

A simple .NET Profiler

By | 10 Apr 2006 | Article
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:

<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

About the Author

Peter Schlang

Web Developer

Germany Germany

Member

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


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalplenty of existing products PinmemberKuno Meyer5:02 22 Aug '08  
GeneralVery nice Pinmemberdwaterfield9:26 21 Apr '06  
GeneralDoes not work ... Pinmemberneil young11:08 19 Apr '06  
...with ASP.NET web applications. By intention?
 
Regards
 

GeneralRe: Does not work ... PinmemberPeter Schlang6:52 20 Apr '06  
GeneralTwo articles PinmemberVladimir Afanasyev23:32 3 Feb '05  
GeneralRe: Two articles Pinmemberpsc_exec23:41 3 Feb '05  
GeneralRe: Two articles PinmemberVladimir Afanasyev0:01 4 Feb '05  
GeneralReadable data PinmemberKlapouchy22:29 3 Feb '05  
GeneralRe: Readable data Pinmemberpsc_exec22:56 3 Feb '05  
GeneralRe: Readable data PinmemberKlapouchy23:18 3 Feb '05  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 10 Apr 2006
Article Copyright 2005 by Peter Schlang
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid