i want to have a time stamp for logs on a Windows Mobile project. The accuracy must be in the range a hundred milliseconds at least.
Ho
The main alternative is the System.Diagnostics.Stopwatch class.
It is available in CE but note the IsHighResolution property. It probably is False on your device but do check.
IsHighResolution
It is as accurate as you're going to get without P/Invoke.