By tag: Stopwatch
0
kicks
Performance Comparisons (a Helper Class)
A little but handy helper class to run (small) performance tests.
0
kicks
Speed Testing and the Stopwatch Class
Software must operate at a speed that is acceptable to the end user. Often large improvements can be made by improving the speed of short-lived but heavily used routines. The speed of these can be accurately measured using the .NET 2.0 Stopwatch class.
0
kicks
Measuring Time More Accurately
How to accurately measure how much time has passed while performing some operation? Use the Stopwatch class. Here is how.