Question:Which of the following will block the current thread for a specified number of milliseconds?
A System.Threading.Thread.Sleep(50);
B System.Threading.Thread.SpinWait(50);
C System.Threading.Thread.Yield();
D None of these.
+ AnswerA
+ Report