线程中传递参数

        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();
        }

你可能感兴趣的:(线程中传递参数)