Im using visual c# wpf application and want to squeeze the most out of my timer.
Im currently using System.Timers.Timer, calling it with 1ms interval (and yes, i know i cant get 1ms timer using VS-wpf).
Im also measuring the timer performance using a Stopwatch, and seeing roughly 13ms.
Two questions:
- If the application changes from x86 to 64, should my timer performance increase?
- Is there a fast way to decrease timer interval (assuming i dont wanna switch to a real-time OS)
Thanks!