c# open browser with url code example
Example 1: open link c#
System.Diagnostics.Process.Start("http://google.com");
Example 2: open url in c#
var uri = "https://www.google.com";
var psi = new System.Diagnostics.ProcessStartInfo();
psi.UseShellExecute = true;
psi.FileName = uri;
System.Diagnostics.Process.Start(psi);