.NET异步方法调用的例子

原文:http://www.cnblogs.com/rockniu/archive/2009/11/03/1595031.html

这样写的好处是TestMethod在同步和异步线程下,都能顺利地被调用.

MethodInvoker和Action都是.NET 2.0内置的Delegate类型,让你方法地回调一个没有参数的方法,而不用自己去定义新的Delegate.

private void button1_Click(object sender, EventArgs e)
{
    Thread t = new Thread(new ThreadStart(TestMethod));
    t.Start();
}

public void TestMethod()
{
    if (this.InvokeRequired)
    {
        //MethodInvoker handler = new MethodInvoker(TestMethod);
        Action handler = new Action(TestMethod);
        
        this.Invoke(handler, null);
    }
    else
    {
        this.Text = "Async Invoked.";
        MessageBox.Show("Async Invoked");
    }
}

.NET 3.0中有一个Action<T>,支持四个Generic的参数.

System.Action<int, int, int, int> handler2 = new Action<int, int, int, int>(Calc);
                this.Invoke(handler2, 1, 2, 3, 4);

public void Calc(int a, int b, int c, int d)
        {
            var r = a + b + c + d;
        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值