Launch an executable from .Net
A simple concept, but plowing through the .net help to find the class I need to launch an .exe from a .net application wasn't too productive.
So, I went to Google and found it quickly. You use the
Process class. Populate
Process.StartInfo with the the necessary information of what you want to launch.