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 to measure time between 2 button press

in Windows-CE C#

how do do it ?

thank's in advance

share|improve this question

4 Answers

DateTime.Now may not be precise enough for your needs. http://blogs.msdn.com/b/ericlippert/archive/2010/04/08/precision-and-accuracy-of-datetime.aspx (Short short version: DateTime is extremely precise, DateTime.Now -> not so much.)

If you want better precision, use the Stopwatch class (System.Diagnostics.Stopwatch).

Stopwatch watch = new Stopwatch();
watch.Start();

// ...

watch.Stop();
long ticks = watch.ElapsedTicks;
share|improve this answer
thank's !! , and how to convert the value in ticks to minutes & seconds ? – Gold May 26 '10 at 18:43
There are 10 million ticks in a second. But Stopwatch has properties for EllapsedSeconds (self-explanatory) and Ellapsed, which will return a TimeSpan from which you can get minutes, seconds, etc. – user414076 May 26 '10 at 19:02
@Anthony: the default stopwatch implementation uses the system tick, which is only 1,000 ticks per seconds, not 10 million. – ctacke May 26 '10 at 19:11
@ctacke, interesting. However, the documentation I've found due to your comment indicates it varies by operating system and hardware. For example, the frequency on my work machine indicates there are 2,143,115 "timer ticks" in a second as expressed by the Stopwatch class. At any rate, thanks for the correction that Stopwatch does not use the same tick implementation as DateTime. msdn.microsoft.com/en-us/library/… – user414076 May 26 '10 at 19:24

Define a variable when the button is clicked once to NOW(). When you click a second time, measure the difference between NOW and your variable.

By doing NOW - a DateTime variable, you get a TimeSpan variable.

share|improve this answer
DateTime? time;

buttonClick(....)
{
    if (time.HasValue)
    {
        TimeSpan diff = DateTime.Now.Subtract(time.Value);
            DoSomethingWithDiff(diff);
        time = null;
    }
    else
    {
        time = DateTime.Now;
    }
}
share|improve this answer

See the static System.Environment.TickCount property.

This number of milliseconds elapsed since the system started, so calling it twice and subtracting the earlier value from the later will give you the elapsed time in milliseconds.

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.