C
Chris Walker
On the desktop, I can create an AppDomain and then load an assembly into
it -- and then create a component in that appdomain and get a reference to
it.
With the compact framework, I can create an AppDomain and launch an
executable in it.
How can I load an assembly into an AppDomain under Windows CE, and then how
can I create an instance of a component from that DLL?
Under .NET, I would do something like:
newAppDomain.CreateInstanceFromAndUnwrap(assemblyPath,
"Project1.AppDomainTestComponent")
Under .NET CF, I have no idea
Chris
it -- and then create a component in that appdomain and get a reference to
it.
With the compact framework, I can create an AppDomain and launch an
executable in it.
How can I load an assembly into an AppDomain under Windows CE, and then how
can I create an instance of a component from that DLL?
Under .NET, I would do something like:
newAppDomain.CreateInstanceFromAndUnwrap(assemblyPath,
"Project1.AppDomainTestComponent")
Under .NET CF, I have no idea
Chris