I want to play a beep for 1 second in thread. I'm not familiar with threads and maybe there is another easy way without using threads. I used console.beep(), but unfortunately it freeze's the form for a second.
while(true)
{
do some jobs;
console.beep();
}
The Winform app freeze on the console.beep(); for one second. I need to pass the line and simultaneously beep for one second.