简单的???
void fun1(){return;}fun2()
{
  ...........
  fun1();
}

解决方案 »

  1.   

    yarshray理解错了,我的意思是fun2()
    {
       .......
       fun1();
       .......
    }在fun1()中所做的事很费时,我希望这两个函数同时进行,即fun2调用了fun1后立即继续执行下去,而不是等fun1执行结束.楼上的说法很对,能给出示例吗?谢谢。
      

  2.   

    using System.Threading;
    public class a
    {
    Thread clientThread;
    fun2()
    {
    this.clientThread=new Thread(new ThreadStart(fun2));
    this.clientThread.Start();
    }
    fun1();
    多线程并不能提高运算速度}
      

  3.   

    http://www.csdn.net/Develop/read_article.asp?id=11817
    http://www.csdn.net/Develop/read_article.asp?id=11818