Skip to content

Instantly share code, notes, and snippets.

@kristopherjohnson
Created April 12, 2012 00:04
Show Gist options
  • Save kristopherjohnson/2363620 to your computer and use it in GitHub Desktop.
Save kristopherjohnson/2363620 to your computer and use it in GitHub Desktop.
Measuring Elapsed Time in C# Methods
public static class Timed
{
/// <summary>
/// Execute action then invoke reporting action with elapsed time
/// </summary>
/// <param name="timedAction">action to be executed and elapsed time measured</param>
/// <param name="reportAction">action to be executed with the elapsed number of milliseconds passed as a parameter</param>
/// <returns>number of milliseconds elapsed during timedAction</returns>
public static long Execute(Action timedAction, Action<long> reportAction)
{
var stopwatch = new System.Diagnostics.Stopwatch();
stopwatch.Start();
timedAction();
stopwatch.Stop();
var elapsedMilliseconds = stopwatch.ElapsedMilliseconds;
if (reportAction != null)
{
reportAction(elapsedMilliseconds);
}
return elapsedMilliseconds;
}
/// <summary>
/// Invoke specified action and return number of milliseconds elapsed
/// </summary>
/// <param name="timedAction">timed action to be executed</param>
/// <returns>number of milliseconds elapsed</returns>
public static long Execute(Action timedAction)
{
return Timed.Execute(timedAction, null);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment