Question:You need to run a method named ThreadProc in a background thread. Which code sample does this correctly? - VB.NET
A ThreadPool.QueueUserWorkItem(AddressOf ThreadProc)
B ThreadPool.QueueUserWorkItem(ThreadProc)
C ThreadStart.CreateDelegate(AddressOf ThreadProc)
D ThreadStart.CreateDelegate(ThreadProc)
+ AnswerA
+ Report