How do I launch files in C#

后端 未结 3 1556
感动是毒
感动是毒 2020-11-30 03:06

-Edit- I feel like an idiot. I had a feeling something like the answer below would work but didnt see any google results similar to the answers below. So when i saw this com

3条回答
  •  情深已故
    2020-11-30 04:03

    It really sounds like you're looking more for this:

    System.Diagnostics.Process proc = new System.Diagnostics.Process();
    proc.EnableRaisingEvents = false;
    proc.StartInfo.FileName = "";
    proc.Start();
    

提交回复
热议问题