System.Diagnostics.Process.Start("http://zhating.cn");
在.NET FreamWork中,是能够正常使用的
参考:https://blog.csdn.net/weixin_43653287/article/details/91460838
但是!!!
在.net core中是不能使用的,是会报错的。
.new core中具体的用法:
var psi = new ProcessStartInfo { FileName = "http://www.baidu.com/", UseShellExecute = true }; Process.Start(psi);