码迷,mamicode.com
首页 > 编程语言 > 详细

线程中传递参数

时间:2014-09-25 22:21:07      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:ar   for   sp   div   art   on   c   ad   line   

        static void Main(string[] args)
        {
            ParameterizedThreadStart doWork = new ParameterizedThreadStart(getMethod);
            Thread th = new Thread(doWork);
            object obj = new string[] { "a", "b", "c", "d", "e", "f", "g" };
            th.Start(obj);                   
        }
        public static void getMethod(object c)
        {
            string[] a = (string[])c;
            foreach (string s in a) {
                Console.Write(s);
                Thread.Sleep(1000);
            }
            Console.ReadLine();
        }

线程中传递参数

标签:ar   for   sp   div   art   on   c   ad   line   

原文地址:http://www.cnblogs.com/beijing2020/p/3993506.html

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