在 C# 中,使用委托异步执行某些工作(调用 BeginInvoke())和使用 ThreadPool 线程之间有什么区别,如下所示
public void asynchronousWork(object num)
{
//asynchronous work to be done
Console.WriteLine(num);
}
public void test()
{
Action<object> myCustomDelegate = this.asynchronousWork;
int x = 7;
//Using Delegate
myCustomDelegate.BeginInvoke(7, null, null);
//Using Threadpool
ThreadPool.QueueUserWorkItem(new WaitCallback(asynchronousWork), 7);
Thread.Sleep(2000);
}
编辑:
BeginInvoke 确保线程池中的一个线程用于执行异步代码,那么有什么区别吗?