使用 AsyncCallback 处理异步调用
摘要:参考文章 原文 异步调用可以避免主线程受工作线程阻塞,即工作线程执行的过程中,主线程依然可以往下运行,不必等待工作线程完成。下面是一个简单的异步调用加法函数的例子。using System;using System.Threading;// the namespace for AsyncResult.using System.Runtime.Remoting.Messaging; namespace AsyncCallback{ // Delegate for add method. public delegate int TwoOperands(int a,int b); class Pro
阅读全文
posted @ 2011-02-23 14:39