202.
What output does the following code produce?
using System;
using System.Threading;
public class Example {
public static void Main() {
Console.WriteLine("A");
ThreadPool.QueueUserWorkItem(new WaitCallback(ThreadProc));
}
static void ThreadProc(Object stateInfo) {
Console.WriteLine("B");
}
}
View Description
The main thread exits before the thread pool task runs. The thread pool uses background Threads, which does not keep the application running