会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
DotNet
博客园
首页
新随笔
联系
订阅
管理
2009年10月19日
C# 委托的同步调用和异步调用
摘要: 委托的Invoke方法用来进行同步调用。同步调用也可以叫阻塞调用,它将阻塞当前线程,然后执行调用,调用完毕后再继续向下进行。同步调用的例子:using System;using System.Threading;public delegate int AddHandler(int a, int b);public class Foo { static void Main() { Console....
阅读全文
posted @ 2009-10-19 14:46 435银狐
阅读(12212)
评论(12)
推荐(4)
编辑
公告