A
Achim Bohmann
Hi all!
i am writing an application on .NET framework which is devided in
several assemblies. the main prog initializes a "manager" which loads
about 15 assemblies using reflection.
now i splitted the windows forms from each single assembly into an own
assembly (meaning now having 2 assemblies for the same functionality as
before) in order to write the GUI again for compact framework with using
the worker assembly unchanged.
the problem now is, that calling the first function from manager
("initialize()", which is defined in IBaseFunctions interface) leads to
an MissingMethodException. the object browser says, that "manager" has
the IBaseFunctions interface defined with the "initialize()" method
inside...
can anybody explain why the call to manager.initialize() works on .NET
framework, but not on compact framework?
and does anybody know how to solve the problem with re-using the
worker-assemblies with not rewriting all the code?
thanks very much in advance
Achim
i am writing an application on .NET framework which is devided in
several assemblies. the main prog initializes a "manager" which loads
about 15 assemblies using reflection.
now i splitted the windows forms from each single assembly into an own
assembly (meaning now having 2 assemblies for the same functionality as
before) in order to write the GUI again for compact framework with using
the worker assembly unchanged.
the problem now is, that calling the first function from manager
("initialize()", which is defined in IBaseFunctions interface) leads to
an MissingMethodException. the object browser says, that "manager" has
the IBaseFunctions interface defined with the "initialize()" method
inside...
can anybody explain why the call to manager.initialize() works on .NET
framework, but not on compact framework?
and does anybody know how to solve the problem with re-using the
worker-assemblies with not rewriting all the code?
thanks very much in advance
Achim