I have one exe file in special folder in my PC.
My folder is: D:\Program Files (x86)\FXDD - MetaTrader
My exe name: metalang.exe
This exe compile files and make with new format.
My sample file is for example: vfc.mq4
When want execute this exe, from Command Prompt(cmd) I call that same below:
D:\Program Files (x86)\FXDD - MetaTrader\metalang.exe vfc.mq4
and it compile file for me.
Question is here: How do this process in C#? I know this function works for call exe:
Process.Start("C:\\");
I dont know how call vfc.mq4 and what must be format?
Regards;