Adding ToolTips to Functions

  • Thread starter Thread starter JellyDonutMan
  • Start date Start date
J

JellyDonutMan

Guest
I've been reading a few articles about adding tooltips to Functions, Methods, etc... but none really tell how it is done. Most just say it uses XML .. I think its part of .NET's Intellisense, but not sure... Any information on how to add ToolTips in VB.NET would be nice :)
 
The C# language has special comments that use XML to describe
methods, classes, and other members. These comments are
understood by VS.NET, and they show up in IntelliSense. They are
also useful because a help file about your class can easily be
created based on these comments.

I have yet to find a way to do this in VB.NET, but I'd love to see it done.
 
I believe there is a special utility that you can get to do it... what it
is I don't know; I'd be interested to know, though.
 
I don't think it is possible to compile the documentation xml into your dll. Note that you only need the .xml file on a developer's box, so you don't need to deploy it....

Bad that it's that available for VB though (as with c#)..... any idea if it features in vs.net 2003?
 
Back
Top