I am porting part of firmware to a gui written in c#. I found out that
nop()
is a function that actually does nothing and delays the execution by some number of clock cycles.
Lets say if I use nop() it will delay the execution in firmware by two milliseconds. How do I delay things in c#?
Thanks in advance,