G
Guest
I have a windows c# application trying to load in an assembly (windows
control assembly that I built). I first do :
Assembly subAssembly =
Assembly.LoadFrom("c:\\bookmanager\\customereditor\\bin\\debug\\CustomerEditor.dll");
Object newSubApp = subAssembly.CreateInstance("CustomerEditor");
newSubApp always returns NULL. I checked and subAssembly.entrypoint is not
defined, which has to be the problem. I'm not sure how to fix.
I did verify my controls do work in a windows app that have direct
references to.
control assembly that I built). I first do :
Assembly subAssembly =
Assembly.LoadFrom("c:\\bookmanager\\customereditor\\bin\\debug\\CustomerEditor.dll");
Object newSubApp = subAssembly.CreateInstance("CustomerEditor");
newSubApp always returns NULL. I checked and subAssembly.entrypoint is not
defined, which has to be the problem. I'm not sure how to fix.
I did verify my controls do work in a windows app that have direct
references to.