To open a URL from a .NET application, many sites (including on StackOverflow) cite this example:
Process.Start(\"http://www.google.com/\");
Use the Launcher object to open URLs.
Example:
await Launcher.LaunchUriAsync(new Uri("www.google.com"));