谁能帮我处理由 func Process.Start(); 调用的进程?

Can anyone help me to get handle of process which is called by func Process.Start();?

例如,我想从浏览器获取句柄。

 private void button1_Click(object sender, EventArgs e)
        {
            Process.Start("https://google.com/");
            //How to get handle of this process?
            
        }

Process.Start() returns 新建进程的一个Process对象。

在下面的示例中,myProcess.Handle 将成为所述进程的句柄。

var myProcess = Process.Start("notepad.exe");
Console.WriteLine(myProcess.Handle);