winform里如何按一个button后用IE打开一个指定的网站

private   void   button5_Click(object   sender,   System.EventArgs   e)  
  {  
  System.Diagnostics.Process   ie   =   new   System.Diagnostics.Process();  
  ie.StartInfo.FileName   =   "IEXPLORE.EXE";  
  ie.StartInfo.Arguments   =   "http://www.csdn.net";  
  ie.Start();  
  }
原文地址:https://www.cnblogs.com/shf/p/442394.html