Is there a way to combine console tools and pack into a managed .net DLL . Then I would be able to call the functions of each console tool by calling functions from the DLL.
Ex. (just examples)
trim.exe
Usage:trim.exe <input> <ouput>
copy.exe
Usage:copy.exe <input> <ouput>
Then I would be able to call them like a function like so
Utilities.Trim("input.txt","ouptut.txt");
Utilities.Copy("input.txt","ouptut.txt");
I don't have access to the source code of these console tools unfortunately.