自定义一个class类想放什么放什么啊
用静态全局变量也可以

解决方案 »

  1.   

    public class Person
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public int Count { get; set; }} for (int i = 1; i < 20; i++)     //将任务加到线程当中
                    {
                        ThreadPool.QueueUserWorkItem(new WaitCallback(TaskProc1), new Person { Id = 1, Name = "测试" ,Count=i});
                    } public static void TaskProc1(object x)   //执行的任务
                {
                    Person person = x as Person;            }
      

  2.   

    用lambda或者委托应该可以传多个
      

  3.   

    ThreadPool.QueueUserWorkItem(new WaitCallback(TaskProc1), i);你的i 是一个对象。。就可以了。
      

  4.   

    new Thread(delegate() { this.Invoke(new Action(delegate() { 乾坤大挪移(快捷菜单, 乾坤大挪移参数); })); }).Start();
    http://blog.csdn.net/xianfajushi/article/details/7609849实在是简单的事,提问的这么多!