write a service in C# .net

  • Thread starter Thread starter Ofer Berkovich
  • Start date Start date
O

Ofer Berkovich

Is it possible to write a service for PPC 2003 in C#?

Thanks,
Ofer
 
I have heard that managed executables have some issues starting early after
reset (haven't seen it myself), so that would be one problem. A bigger
problem is that a service must be implemented as a dll with a specific
export exposed - something you cannot do with managed code. This leaves a
cumbersome approach whereby you write an unmanaged dll and launch a managed
process from inside it, thus negating a positive effect of using a service
(reducing the amount of processes)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top