c# - Start a program with a specified application -
i'm trying open zip file emulator, , i'm having bit of difficulty. i'm reading says utilize process.start, not working. here code use:
process.start(application.startuppath + "\\emulators\\genesis\\fusion.exe", application.startuppath + "\\emulators\\genesis\\roms\\aladdin.zip");
the emulator opens up, game isn't loaded it. unusual part if type command prompt works expected.
change application.startuppath + "emulators\\genesis\\roms\\aladdin.zip"
application.startuppath + "\\emulators\\genesis\\roms\\aladdin.zip"
. you're missing \\ before "emulators".
c# command-line
No comments:
Post a Comment