[Solved] Combining two exe files [closed]

[ad_1] The only good solution is to port the oldest code (2006) to VS2010 (or both project to newer compilers), and compile a new executable from a fresh solution where you combine both projects as you wish. As commented, merging two executables makes little sense in general (what is the entry point ? What about … Read more

[Solved] Run C# application from cmd

[ad_1] You need to use Command Line Argument for your console application, so that you can pass argument from command line to the program. [ad_2] solved Run C# application from cmd