I have a COM interop component that I have written in C#. I register the
object with regasm to embed its ProgID and such in the registry. All of my
normal .NET classes get registered with it and I don't want them to be
registered as COM interop objects. Is there an attribute I can apply to
them to prevent registration? They are public in the project, and I would
like to leave them that way.
Any help would be great!
Rob Teixeira [MVP] - 29 Jul 2003 00:12 GMT
Attribute -
[ComVisible(false)]
-Rob [MVP]
> I have a COM interop component that I have written in C#. I register the
> object with regasm to embed its ProgID and such in the registry. All of my
[quoted text clipped - 4 lines]
>
> Any help would be great!
Brian Reed - 29 Jul 2003 17:04 GMT
That worked. Thanks!
> Attribute -
>
[quoted text clipped - 11 lines]
> >
> > Any help would be great!