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

I want to see how long a function is running. So I added a timer object on my form and I came out with this code:

private int counter = 0;
//inside button click I have:
timer = new Timer();
timer.Tick += new EventHandler(timer_Tick);
timer.Start();
Result result = new Result();
result = new GeneticAlgorithms().TabuSearch(parametersTabu, functia);
timer.Stop();

and:

private void timer_Tick(object sender, EventArgs e)
{
    counter++;
    btnTabuSearch.Text = counter.ToString();
}

But this is not counting anything. Any ideas?

share|improve this question
if you set timer.stop(); after Start() is normal. When is necessary to stop timer? When function is finished? – Roberto Conte Rosito Apr 11 '12 at 13:44
why not StopWatch? (msdn.microsoft.com/en-us/library/…) – Mark Apr 11 '12 at 13:46

6 Answers

up vote 11 down vote accepted

To avoid future problems with a timer, here is the right code:

timer = new Timer();
timer.Tick += new EventHandler(timer_Tick);
timer.Interval = 1; //set interval on 1 milliseconds
timer.Enabled = true; //start the timer
Result result = new Result();
result = new GeneticAlgorithms().TabuSearch(parametersTabu, functia);
timer.Enabled = false; //stop the timer

private void timer_Tick(object sender, EventArgs e)
{
   counter++;
   btnTabuSearch.Text = counter.ToString();
}

But it's the wrong aproach. You must use the Stopwatch (System.Diagnostic) class because it's a High resolution timer and the word Diagnostic says everything.

So try this:

Stopwatch timer = Stopwatch.StartNew();

Result result = new Result();
result = new GeneticAlgorithms().TabuSearch(parametersTabu, functia);

timer.Stop();  
TimeSpan timespan = timer.Elapsed;

btnTabuSearch.Text = String.Format("{0:00}:{1:00}:{2:00}", timespan.Minutes, timespan.Seconds, timespan.Milliseconds / 10);
share|improve this answer
1  
Note: with the timer set with an interval of 1ms, you should be careful not to think that your counter is actually the number of milliseconds. Depending on hardware, the minimum interval for a timer (on my computer) is around 15ms. So even if you set the interval to 1ms, it'll only fire every 15ms or so. – Matt Burland Apr 11 '12 at 14:14
i will try the timer tomorrow. I just want a counter to see how much time passed since i pressed the button. – rhose87 Apr 11 '12 at 19:37
var timer = Stopwatch.StartNew(); <-- one less line of code – Ian Mercer Jan 31 at 17:18
@IanMercer Forgot to remove those characters, thank you. – Fuex Jan 31 at 17:23

Don't use a timer - use the Stopwatch class.

var sw = new Stopwatch();
Result result = new Result();

sw.Start();
result = new GeneticAlgorithms().TabuSearch(parametersTabu, functia);

sw.Stop();

// sw.Elapsed tells you how much time passed
share|improve this answer
That was me! I clicked it by mistake man. – james lewis Apr 11 '12 at 13:49
@jameslewis - No problem, no harm done now you reverted it. – Oded Apr 11 '12 at 13:51
Or even var sw = Stopwatch.StartNew(); <-- one less line of code – Ian Mercer Jan 31 at 17:19

For timing a function, you should use the Stopwatch Class

Also, the reason your timer isn't counting is because you didn't set an interval for it.

share|improve this answer

You should use the stopwatch class for timing functions. Try the following:

private int counter = 0;

//setup stopwatch and begin timing
var timer = System.Diagnostics.Stopwatch.StartNew();

Result result = new Result();
result = new GeneticAlgorithms().TabuSearch(parametersTabu, functia);

// stop timer and get elapsed time
timer.Stop();
var elapsed = timer.Elapsed;

// display result time
MessageBox.Show(elapsed.ToString("mm':'ss':'fff"));

Hope it helps,

James

share|improve this answer

use Stopwatch of System.Diagnostics

static void Main(string[] args)
{
Stopwatch stopWatch = new Stopwatch();
stopWatch.Start();
Thread.Sleep(10000);
stopWatch.Stop();
// Get the elapsed time as a TimeSpan value.
TimeSpan ts = stopWatch.Elapsed;

// Format and display the TimeSpan value.
string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}.{3:00}",
    ts.Hours, ts.Minutes, ts.Seconds,
    ts.Milliseconds / 10);
Console.WriteLine("RunTime " + elapsedTime);
}
share|improve this answer
1  
Wouldn't it be easier to print the time with ts.ToString("hh:mm:ss.ff") or ts.ToString("G")? – Oliver Apr 11 '12 at 13:53

The best way to see how long a bit of code takes to run is to use System.Diagnostics.Stopwatch.

Here's an example:

using System.Diagnostics;

#if DEBUG
     Stopwatch timer = new Stopwatch();
     timer.Start();
#endif

     //Long running code

#if DEBUG
     timer.Stop();
     Debug.WriteLine("Time Taken: " + timer.Elapsed.TotalMilliseconds.ToString("#,##0.00 'milliseconds'"));
#endif

I use the #if DEBUG to ensure the stopwatch code doesn't get into the production release, but you could do without it.

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.