+ 5
Have a delay on c#
What is delay(in c++) in c#?
1 Odpowiedź
+ 8
Heya,
Matters if you're developing in console, winforms or something else
In c# console, you will have to import "use system.threading" and then Thread.Sleep(milliseconds time);
In winforms you'll have to make a object of timer, set him tick speed and then a sign event ontick =)