C#, Process.Start hide?

c#, process

Solution

Something like:

ProcessStartInfo startInfo = new ProcessStartInfo("http://google.com/search?q=" + t);
startInfo.WindowStyle = ProcessWindowStyle.Hidden;

Process.Start(startInfo);

Problem

``` public static void Main(string[] args){ SearchGoogle("Test"); Console.ReadKey(true); } static void SearchGoogle(string t){ Process.Start("http://google.com/search?q=" + t); } ``` Is there any way to hide the browser, so it won't pop up??

Original source