S
Sowen Zhang
Hi,
I use the following code piece
previous = DateTime.Now;
end = DateTime.Now;
TimeSpan diff = end - previous;
and then read diff.TotalMilliseconds
It works in desktop, but not in PDA, where always gives me 1000 ms or 0,
weird~~
Is there any better way to do what I want? Thanks!
I use the following code piece
previous = DateTime.Now;
end = DateTime.Now;
TimeSpan diff = end - previous;
and then read diff.TotalMilliseconds
It works in desktop, but not in PDA, where always gives me 1000 ms or 0,
weird~~
Is there any better way to do what I want? Thanks!