-9

如何执行几个方法,但每个方法都要等到前一个加载网页?例子:

methode1(){
webBrowser1.Navigate("http://test.com");
}
methode2(){
webBrowser1.Navigate("http://test2.com");
}

methode1();
methode2();
4

1 回答 1

-2

运行 async 另一个方法,它同时执行几个方法

methode1(){
   webBrowser1.Navigate("http://test.com");
}
methode2(){
   webBrowser1.Navigate("http://test2.com");
}

public void BatchRun()
{
   methode1(); // run sync
   methode2(); // run sync after Method1
}

// ...

Action toRun = BatchRun;
toRun.BeginInvoke(null, null); // Run async
于 2013-02-19T12:12:28.040 回答