using System;
using System.Text;
using System.Diagnostics;
namespace HelloNamespace
{
    public class A
    {
        static void Main(string[] args)
        {
            Process.Start(@"C:\windows\Help\iexplore.chm");
        }

    }

}
System.Diagnostics.Process.Start(Application.StartupPath.ToString() + "\\a.chm"); //相对路径, /bin/debug/a.chm

相关文章:

  • 2022-12-23
  • 2022-03-10
  • 2021-09-22
  • 2021-07-06
  • 2021-05-09
猜你喜欢
  • 2022-12-23
  • 2021-07-01
  • 2022-12-23
  • 2022-12-23
  • 2021-11-03
相关资源
相似解决方案