Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a simple way (and compact if possible) to execute a block of C# while counting time. Something similar to this C++ code:

elapsed = time_call([&] 
   {
      for_each (a.begin(), a.end(), [&](int n) {
         results1.push_back(make_tuple(n, fibonacci(n)));
      });
   });   

where time_call is:

// Calls the provided work function and returns the number of milliseconds 
// that it takes to call that function.
template <class Function>
__int64 time_call(Function&& f)
{
   __int64 begin = GetTickCount();
   f();
   return GetTickCount() - begin;
}

I know the stopwatch way... anything more compact ?

share|improve this question
3  
What's wrong with Stopwatch? – SLaks Oct 11 '11 at 12:59
1  
The stopwatch way takes about 3 lines of code, how compact do you want it to be? – harold Oct 11 '11 at 12:59

3 Answers

up vote 9 down vote accepted
TimeSpan TimeAction(Action blockingAction)
{
    StopWatch stopWatch = System.Diagnostics.Stopwatch.StartNew();
    blockingAction();
    stopWatch.Stop();
    return stopWatch.Elapsed;
}

Usage:

var elapsed = TimeAction(() =>
    {
        //Code to time
    });

Based on your sample code (and usage of GetTickCount) you might want to return ElapsedTicks instead of Elapsed.

share|improve this answer
1  
Provided obviously that action is blocking (i.e. not async). – Joey Oct 11 '11 at 13:03
System.Diagnostics is not "used" by default. And it would be 'System.Diagnostics.Stopwatch.StartNew()', not 'new StopWatch.StartNew()'. – Philip Oct 11 '11 at 13:05
@Joey: True, updated parameter name to make clearer. – George Duckett Oct 11 '11 at 13:05
@Philip: Edited. – George Duckett Oct 11 '11 at 13:06
What I meant was, StartNew() is a static method, so there shouldn't be a "new" keyword before it. – Philip Oct 11 '11 at 13:08
show 1 more comment
public double TimeCall(Action actionToExecute)
{
   double elapsed = 0;

   if (actionToExecute != null)
   {
      var stopwatch = Stopwatch.StartNew();
      actionToExecute.Invoke();
      elapsed = stopwatch.ElapsedMilliseconds;
   }

   return elapsed;
}

How-to use:

var elapsed = TimeCall( () => { foreach( ... ) } );
share|improve this answer

I don't know the stopwatch way, but C# has lambdas too, so it should be easy enough to implement something similar to time_call().

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.