Tick count

IS there a way to get the current system tick count in milliseconds or microseconds?

This works for me.

long msTime = DateTime.Now.Ticks / TimeSpan.TicksPerMillisecond;

2 Likes

Thanks for the reply.