CLR Hosting

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to host the CLR in an application on CE in the same manner as
on Windows? If yes, can someone point me in the direction of some
documentation or is it just the same as on Windows?
 
It is impossible I am afraid. What is it you are trying to do? There may be
some other workaround...

Cheers
Daniel
 
I have a real-time database product and would like to offer the ability to
write scripts in the database using the .NET languages. This can be done
easily on Windows by hosting the CLR and providing the relevant classes to
access the database internals. The database itself runs on both Window
2000/XP etc. and CE and it would be useful to provide the same CLR
environment on CE.

Any other ideas?
 
That is a very specific scenario for which I have no specific advice. If
someone else has I am sure they'll jump in.

The generic advice I always give is to redesign for inter-process
communication. I.e. have your existing native app communicate with a managed
exe (which, I guess, previously was a dll) via IPC.

Cheers
Daniel
 
Back
Top