How can I launch a URL in the users default browser from my application?

Aaron Anodide picture Aaron Anodide · May 8, 2012 · Viewed 44.8k times · Source

How can I have a button in my desktop application that causes the user's default browser to launch and display a URL supplied by the application's logic.

Answer

Darin Dimitrov picture Darin Dimitrov · May 8, 2012
 Process.Start("http://www.google.com");