Answers for "how to make c# open brower"

C#
5

how to make c# open brower

System.Diagnostics.Process.Start("http://google.com");
Posted by: Guest on May-10-2020
0

how to make c# open brower

public static void GoToSite(string url)
{
     System.Diagnostics.Process.Start(url);
}
Posted by: Guest on December-03-2021

C# Answers by Framework

Browse Popular Code Answers by Language