remarks in Intellisense

  • Thread starter Thread starter MattB
  • Start date Start date
M

MattB

Hi all, not exactly a asp.net question, but I'm sure you people know this
one. I'm just not sure what to look for in help, because it's sure to be in
there too.

I'm creating a reusable class library and I want to be able to add usage
remarks that would show up in Intellisense when the library was being called
from elsewhere. How does one add these comments? I'm taking about the stuff
that pops in Intellisense that says stuff like "Gets or sets the X
property.".

Thanks!

Matt
 
Matt

Try typing in /// on the line directly above your class, procedure,
property, etc. Visual Studio then fills in the rest you just need to add
some comments
 
That is not the same thing. (that is just the C# XML auto document feature)

This question has been asked before, and I not sure it is simple to do (if
at all). (Does it involve attributes?)

Greg
 
I believe these are just hacks to give VB the same commenting ability as C#.
I don't believe there is currently a way to do this in VB.
 
No wonder it was hard to find. Thanks for the tips. This seems like a big
oversight in vb. I would have expected it to be in there without having to
resport to using a hack (appears others have had the same thought). Does
anyone know if it's in the next version of vb?

Anyway, THANKS for the info!

Matt
 
VB XML comments will be added to VB 2005. The intellisense feature? I
would assume so.

Greg
 

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

Back
Top