Thread t=new .....
t.start();

解决方案 »

  1.   

    Start,如:
    Thread t = new Thread(new ThreadStart(ThreadProc));
    t.Start();
      

  2.   

    丢个板砖~~~~~~
    貌似:
    t.Start();
      

  3.   

    试试不就晓得了吗
    哪有run方法
      

  4.   

    run是在主程序入口program.cs中使用的,它是运行整个你编写的程序而非你要调用的线程。start才是在你编写的程序中调用你要使用的线程的方法,Thread t = new Thread(new ThreadStart(ThreadProc)); 
    t.Start(); 才是正解啊!
      

  5.   

    run 是阻塞模式
    start 是非阻塞模式
      

  6.   

    Start();Thread没有run方法
    Application.Run(new Form());
    new Thread(new ThreadStart()).Start();
      

  7.   

    对线程对象用start(), 线程内部会自动调用run()
      

  8.   

    java 用run()
    C#  用 start()
      

  9.   

    MS在C#中没有run()吧,Thread t=new .....  t.start();
    打点之后有提示这样的问题自己试下就知道了
      

  10.   

    C# 中 当然是 start