Is it possible to expose .NET objects to COM objects & How?

Yes, by using these things it can be done. Classes should implement interfaces explicitly. Managed types must be public. Methods, properties, fields, and events that are exposed to COM must be public. Types must have a public default constructor with no arguments to be activated from COM. Types cannot be abstract.

Tagged . Bookmark the permalink.

Leave a Reply