You can use System.Reflection to get into any assembly, regardless of EXE or DLL format.
To run another application, for example,
string fileName = "MainApp.exe";
string className = "Program";
string methodName = "Main";
string[] args = {"arg1", "arg2"};
Assembly asm = Assembly.LoadFrom(fileName);
foreach (Type typ in asm.GetTypes())
{
if (typ.Name == className)
{
BindingFlags flags = BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Static;
MethodInfo method = typ.GetMethod(methodName, flags);
method.Invoke(null, new object[] { args });
}
}
To get to other methods, change the names accordingly.
This is based on actual working code that I originally derived from this example.
There might be better ways to write it, though -- this thread suggests using the Activator class for more concise code.