"In Visual C# you can document the code you write using XML. C# is the only programming language in Visual Studio .NET with this feature. For details on creating an XML file with documentation comments, see the following topics." from help files.
I forgot to add that I'm using VB.net 2003. Is XML Comments available in VB.net 2003? Anybody have an example? Message from Eric Means <[EMAIL PROTECTED]>@DISCUSS.DEVELOP.COM received on 06/23/2006 12:26 PM 06/23/2006 12:26 PM Eric Means <[EMAIL PROTECTED]>@DISCUSS.DEVELOP.COM Please respond to "Discussion of advanced .NET topics." <[email protected]> Sent by "Discussion of advanced .NET topics." <[email protected]> To: [email protected] cc: Subject: Re: [ADVANCED-DOTNET] Documenting Dlls Bob's solution is the best one. Not only is it pretty easy to generate help files, but if you distribute the .xml files with the .dll files, the XML comments show up in the Intellisense as well, which is great. On 6/23/06, Bob Uva <[EMAIL PROTECTED]> wrote: > > Use xml comments in your source and the open source tool ndoc to > auto-generate documentation. NAnt supports an NDoc task. If you are not > familiar with xml comments, check out the "Recommended Tags for > Documentation Comments" topic in VS.NET online help. > > Bob > -------------- Original message ---------------------- > From: Franklin Gray <[EMAIL PROTECTED]> > > I've been asked to document my common functions for other developers on > > other projects to use. My first thought was to do that using Word but > > then thought it would be great if I could tie it into the help system. > > > > 1) How you most document their dlls? > > > > 2) How hard is it to tie my methods and properties into the help system > so > > they can highlight it and press F1 and the help for the method or > property > > popps up? > > > > =================================== > > This list is hosted by DevelopMentor(r) http://www.develop.com > > > > View archives and manage your subscription(s) at > http://discuss.develop.com > > =================================== > This list is hosted by DevelopMentor(r) http://www.develop.com > > View archives and manage your subscription(s) at > http://discuss.develop.com > -- Eric Means [EMAIL PROTECTED] http://www.randomtree.org/eric/ =================================== This list is hosted by DevelopMentorĀ® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com =================================== This list is hosted by DevelopMentorĀ® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com
