- How can 2 .net executables call functions on eachother?
- Assembly ass = Assembly.LoadFile("pathtoYourExe");
- Type myType = ass.getType ("Full name of type whose method you need to call");
- myTypeName inst = (myTypeName) Activator.CreateInstance(myType);