当前位置:  开发笔记 > 编程语言 > 正文

如何从C#打开2个URL?

如何解决《如何从C#打开2个URL?》经验,为你挑选了1个好方法。

好的,听起来很简单,我知道我可以使用Process.Start(" http:// mysite ");

但我需要一次打开2个网站!就像是

Process.Start(" http:// mysite "); Process.Start(" http:// othersite ");

我不能让它工作,因为它只打开第二个站点的过程.

任何帮助将不胜感激 ,

谢谢,



1> 小智..:

您可以尝试在新线程中打开每个.

Thread thread1 = new Thread(new ThreadStart(Process.Start("http://mysite")));
thread1.Start();

Thread thread2 = new Thread(new ThreadStart(Process.Start("http://othersite")));
thread2.Start();

thread1.Join();
thread2.Join();

推荐阅读
k78283381
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有