我使用此代碼打開網站。當我說「打開谷歌」它會打開谷歌:如何隨機打開多個網站?
if (r == "open google")
{
Process.Start("https://google.com");
}
現在,我怎麼能隨機打開多個網站?我的意思是,當我說這是怎麼回事,這些網站就開一個隨機:http://www.pcmag.com,https://www.ehow.com ...
我品嚐過的代碼,但我的軟件中打開所有的網站:
if (r == "what's new" || r == "what's up")
{
Process.Start("http://www.pcmag.com");
Process.Start("https://www.ehow.com");
Process.Start("http://www.zdnet.com");
Process.Start("http://www.empireonline.com");
}
將它們放在一個數組中,然後生成一個0到1之間的隨機數,然後訪問由該隨機數表示的位置。 – npinti