如何使用 C# 在旧版边缘浏览器的新 window 中启动 url

How to launch a url in the new window of legacy edge browser using C#

提前致谢,

我想在旧版边缘浏览器的新 window 中启动我的 url。

截至目前,每次我启动 url 时,都会向现有的 window 添加一个我不想要的新选项卡。

这是我尝试过的方法:

Uri url = new Uri("https://www/google.com");
 Process.Start(new ProcessStartInfo
 {
    FileName = "microsoftedge.exe",
    Arguments = url.ToString() + "--new window",
    WindowStyle = ProcessWindowStyle.Normal
 });

先用开关再用 url:

"--new-window" + url.ToString(),