VB.Net XML Comments and Intellisense for COM?

T

TCook

Hey All,

I have added my XML comments to my VB.Net solution and from within VS2005
they show up quite nicely in the Object Browser, etc.

However, when the class library is referenced from a COM app, the procedure
attributes do not show up.

Is there a way to fix this?

Thanks,

TC
 
M

Mattias Sjögren

However, when the class library is referenced from a COM app, the procedure
attributes do not show up.

Is there a way to fix this?

The COM helpstrings are taken from DescriptionAttributes on your
methods, not from XML docs.


Mattias
 
T

TCook

Thanks Mattias!

I see now... just use 'System.ComponentModel'.

Simply type the opening angle bracket '<' and the 'Description' attribute is
available.

Thanks Again,

TC
 

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

Top