How to open in default browser in C#
To open a browser in C# there are many ways to do that.Using Process.Start
System.Diagnostics.Process.Start("http://google.com");
Using System.Diagnostics.ProcessStartInfo()
var uri = "https://www.google.com";
var psi = new System.Diagnostics.ProcessStartInfo();
psi.UseShellExecute = true;
psi.FileName = uri;
System.Diagnostics.Process.Start(psi);