I want to expose my .NET objects to COM objects. Is that possible?

Q

I want to expose my .NET objects to COM objects. Is that possible?

✍: Guest

A

Yes, but few things should be considered first. 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.

2014-12-10, 1842👍, 0💬