C# 使用默认浏览器打开网页url

432 阅读1分钟
    // Code reference: https://csharpforums.net/threads/net6-open-hyperlink-start-browser-with-url.7735/
    Process.Start(new ProcessStartInfo() { 
        FileName = "https://www.yourwebsite.com",
        UseShellExecute = true });