Hi,
I need to calculate how much time has passed from one state to another in Silverlight 3.0.
it is most common to do:
DateTime Start = DateTime.UtcNow;
.
.
.
DateTime End = DateTime.UtcNow;
TimeSpan Duration = End - Start;
BUT, this doesn't cover a case were the user changed the computer time. Is there a way to get the same effect using some other timer? For instance, a timer that counts the time since the computer was turned on (Easy in C# but blocked in SL) or any other timer that isn't based on DateTime.Now or DateTime.UtcNow.
Gilad.