Project "Simple COM Server", where?

  • Thread starter Thread starter Axel Dahmen
  • Start date Start date
A

Axel Dahmen

Hi,

I'd like to write a simple COM Automation Server in C# but couldn't find a
matching project. I want to have the IDE maintain the IDL and the REG file
automatically.

Which project should I use to achieve this?

TIA,
Axel
 
If you really want to maintain IDL (and REG) files you will have to use VC++ and ATL, managed languages are self describing using
embedded metadata, so no IDL files needed.
It's possible to expose your managed methods to COM clients by applying the correct interop attributes, check the "COM Interop Part
2: C# Server Tutorial" chapter in the C# reference manual.

Willy.
 
Back
Top