Can anyone help me? How can I make a microsecond timer in c#? Like other timers, I want to do Something in the timer body.
If you are familiar with Stopwatches setting the tick-frequency to micoseconds via:
Stopwatch stopWatch = new Stopwatch(); stopWatch.ElapsedTicks / (Stopwatch.Frequency / (1000L*1000L));
should solve your problem.
1.4m articles
1.4m replys
5 comments
57.0k users