Archive for October 1st, 2007

Profiling .NET Applications I

If you are a serious developer, you are certain to have either come across or used tools to profile your application. This will let you know a couple of things about your code:

How fast it (the program) executes
How fast each method executes
Bottlenecks within the code
Number of times loops execute
Memory usage
Number of objects created

These are pretty useful […]