0
Timer in C#
Hi. I'm working on a console application with C#. I want to print a message every 0.5 seconds. How do I do that?
1 Resposta
0
System.Threading.Thread.Sleep(500);
// Print something
Hi. I'm working on a console application with C#. I want to print a message every 0.5 seconds. How do I do that?