Reading output from another running application

后端 未结 3 1764
自闭症患者
自闭症患者 2020-12-17 00:55

I\'m working on a custom IDE in C# for a scripting language, and I have a problem.

I\'m trying to start the compiler process (pawncc.exe) and pass arguments to it. I

3条回答
  •  天涯浪人
    2020-12-17 01:23

    I dont have the pawnCC application so I cant try but it appears they restrict the verbosity of debugging information to external applications - apart from the command prompt.

    Can you try spawning the pawncc.exe via cmd:

    "cmd.exe \c CommandParameterToLaunchPawnCCwithArguments"
    

提交回复
热议问题