public static void Main(string[] args){
SearchGoogle("Test");
Console.ReadKey(true);
}
static void SearchGoogle(string t){
Process.Start("http://google.com/search?q=" + t);
}
Run Code Online (Sandbox Code Playgroud)
有没有办法隐藏浏览器,所以它不会弹出?