The easiest way to think about my question is to think of a single simple unix command (although this is for Windows), and I need programmatic access to run it.
I have one command line based executable that does a certain part of the job. I want to call this executable a .net process library, as I can do with any other executable.
However, it became clear to me that there was a chance that the dll would become useless or break with unintended updates to the executable or nonexistent executable.
Is it possible to run the executable from the Process object in the .NET infrastructure, since I would use an external executable?
source
share