i need to measure time between 2 button press
in Windows-CE C#
how do do it ?
thank's in advance
|
i need to measure time between 2 button press in Windows-CE C# how do do it ? thank's in advance |
|||
|
|
|
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).
|
|||||||||
|
|
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. |
||||
|
|
|
|||
|
|
|
See the static 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. |
||||
|
|