C#有没有类似 VisualBasic.Interaction.Shell 的类?
我知道C#中有个:System.Diagnostics.Process.Start
不知道还有没有其它的
              
------解决方案--------------------Windows的API:
        [DllImport("shell32.dll")]
        public extern static int ShellExecute(IntPtr hwnd,
                                                 string lpOperation,
                                                 string lpFile,
                                                 string lpParameters,
                                                 string lpDirectory,
                                                 int nShowCmd
                                                );