I am trying to write some c# code to start a browser using Process.Start(app,args); where apps is the path to the browser e.g. /Applications/Google Chrome
Process.Start(app,args);
/Applications/Google Chrome
Why dont you try something like this:
Process P = new Process(); P.StartInfo.FileName = "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"; P.StartInfo.Arguments = "--no-default-browser-check"; P.UseShellExecute = false; P.Start();