码迷,mamicode.com
首页 > 其他好文 > 详细

看看BeginInvoke的用法,亲爱的们

时间:2014-12-25 18:08:10      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:

看看它是杂带参数的哈 

 

using System;
using System.Threading;
class MyTest
{
    delegate bool deleTest(string a,string b);
    static void Main(string[] args)
    {
        deleTest mytest = new deleTest(Test);
        IAsyncResult testRecult = mytest.BeginInvoke("a", "b", null, null);

        Write();
        
        Console.WriteLine(mytest.EndInvoke(testRecult));
    }
    public static bool Test(string s1, string s2)
    {
        Thread.Sleep(3000);
        Console.WriteLine("InTest");
        if (s1 == s2)
            return true;
        return false;
    }

    public static void Write()
    {
        Console.WriteLine("InWrite");
    }
}
/*
运行结果:

InWrite
InTest
False
*/

 

看看BeginInvoke的用法,亲爱的们

标签:

原文地址:http://www.cnblogs.com/wolfocme110/p/4184965.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!