Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 2nd, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How can 2 .net executables call functions on eachother?
  2. Assembly ass = Assembly.LoadFile("pathtoYourExe");
  3. Type myType = ass.getType ("Full name of type whose method you need to call");
  4. myTypeName inst = (myTypeName) Activator.CreateInstance(myType);