all groups > c# > august 2004 >
You're in the

c#

group:

Has the XML Documentation been "forgotten" in VB.NET?


Re: Has the XML Documentation been "forgotten" in VB.NET? Jochen Kalmbach
8/27/2004 3:00:16 AM
c#:
[quoted text, click to view]

'''

But only in VS2005 and later...

See also: Suggestion Details: Don't use ''' for XML comment designation
http://lab.msdn.microsoft.com/ProductFeedback/viewFeedback.aspx?
feedbackid=d38461b0-1cc0-4f2b-9b84-33276943f7eb

--
Greetings
Re: Has the XML Documentation been "forgotten" in VB.NET? David
8/27/2004 3:53:19 AM
[quoted text, click to view]

In VB.Net there's a number of addins that provide this, but as you've
seen it's not included in the current Visual Studio, now is the ability
to pick up custom documentation in Intellisense included.

Apparently these will be added to the next version of VS.
Re: Has the XML Documentation been "forgotten" in VB.NET? Ken Tucker [MVP]
8/27/2004 6:50:24 AM
Hi,

Addin to make xml documentation

http://www.gotdotnet.com/workspaces/releases/viewuploads.aspx?id=112b5449-f702-46e2-87fa-86bdf39a17dd

Ken
--------------------
[quoted text, click to view]
Hi There!

In C# you can use /// to add comments that can produce XML documentation.
What about in VB????

Thanks,
Don


Re: Has the XML Documentation been "forgotten" in VB.NET? Mark Rae
8/27/2004 11:00:28 AM
[quoted text, click to view]

No.

Re: Has the XML Documentation been "forgotten" in VB.NET? Cor Ligthert
8/27/2004 12:13:48 PM
Don,

Any reason you send this to the C# newsgroup maybe you have a good reason,
however it gives me only the idea you only want to create a trolling thread.

Cor

Re: Has the XML Documentation been "forgotten" in VB.NET? Jay B. Harlow [MVP - Outlook]
8/27/2004 1:04:29 PM
Jochen,
Interesting suggestion.

I would prefer '@ to '/, however that is such a personal preference I'm not
debating which is better.

However I am able to live with ''' as I view ''' as duplicate comment
characters, which happens to be what C# is with /// (duplicated comment
characters). Further they both happen to be a sequence of 3 characters.

FWIW I would prefer '@ to ''' also, however I am able to live with anything
as long as we get support for XML documentation! :-) VS.NET 2005 Beta 1
seems to have good support for it!

One of the tools that Herfried identified had an option to support '@ or
other sequence you choose (such as '/) however I found its support for it
was not the best. Also the version I tried had a couple quirks...

Just a thought
Jay


[quoted text, click to view]

Re: Has the XML Documentation been "forgotten" in VB.NET? hirf-spam-me-here NO[at]SPAM gmx.at
8/27/2004 1:17:34 PM
* "Don Wash" <don@wash.com> scripsit:
[quoted text, click to view]

From my FAQ (<URL:http://dotnet.mvps.org/dotnet/faqs/>):

Adding tooltips in intellisense for VB.NET assemblies and creating HTML Help
documentation:

VS.NET takes the text shown in intellisense tips from an XML file that is
provided in addition to the assembly (for example, a DLL). The XML file
must have the same name as the corresponding DLL with ".xml" appended and
has to be placed in the same folder as the assembly (assembly "Foo.dll",
XML file "Foo.dll.xml").

The format of the XML file taken by VS.NET is specified here:

<URL:http://msdn.microsoft.com/library/en-us/csref/html/vclrfprocessingxmlfile.asp>

For C#, VS.NET creates this XML file automatically (compiler option "/doc").
For VB.NET, that's currently not supported, but this will be possible in VB
2005.

You can create the XML file by hand, but notice that this will take a lot of
time and it will be hard to keep the file up to date when parts of the
assembly change. It's much easier to use one of the tools listed below to
create the XML file. Tools like NDOC will take the XML file and create an
HTML Help file from the XML formatted data.

One easy way to create the XML file is to provide information for tooltips
as XML comments inside the VB.NET source files and then use tools like
VB.DOC to create the XML file that contains the data. Then you can copy
this file into the assembly's directory to provide information to VS.NET
that enables it to display tooltips, or you can create a help file. The
help file can be deployed with the assembly and can be used by other
developers who use the assembly as reference.

For VB.NET 2002/2003:

VB Commenter
<URL:http://www.gotdotnet.com/team/ide/>
-> "VB Commenter"

XML Documentation
<URL:http://www.gotdotnet.com/team/vb/>
-> "XML Documentation"

VBXC - VB.NET XML Commentor
<URL:http://vbxmldoc.tor-erik.net/>

NDOC (formerly DOC.NET)
<URL:http://ndoc.sourceforge.net/>

VB.DOC
<URL:http://vb-doc.sourceforge.net/>

<URL:http://www.gotdotnet.com/Community/Workspaces/Workspace.aspx?id=112b5449-f702-46e2-87fa-86bdf39a17dd>

XML comments will be introduced to VB in version 2005 ("Whidbey").

C# XML comments:

C# Programmer's Reference -- Recommended Tags for Documentation Comments
<URL:http://msdn.microsoft.com/library/en-us/csref/html/vclrfTagsForDocumentationComments.asp>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
Has the XML Documentation been "forgotten" in VB.NET? Don Wash
8/27/2004 9:41:20 PM
Hi There!

In C# you can use /// to add comments that can produce XML documentation.
What about in VB????

Thanks,
Don

Re: Has the XML Documentation been "forgotten" in VB.NET? Rob Windsor [MVP]
8/28/2004 8:26:19 PM
VB 2005 will have native support for XML comments. For VB.NET 2003 you can
use the VBCommentor Power Toy.

http://www.gotdotnet.com/workspaces/workspace.aspx?id=112b5449-f702-46e2-87fa-86bdf39a17dd

--
Rob Windsor [MVP-VB]
G6 Consulting
Toronto, Canada


[quoted text, click to view]

Re: Has the XML Documentation been "forgotten" in VB.NET? Cor Ligthert
8/29/2004 9:13:22 AM
Don,

Do not forget that the VBNet has background compiling while typing, which
makes the need for this kind of documentation "less" important.

The languages are maybe quiet the same, the IDE part definitely is not, the
developing teams went real in a different direction with that.

You are maybe right because I think that VBNet programmers expect the same
comfort from the C# IDE as it is with VBNet and probably it is visa versa
about the documentation system.

(Before it is flamed, especially on older computers is the C# IDE faster)

Cor


"> Sorry you feel that way. I'm posting to C# newsgroup because C#
programmers
[quoted text, click to view]

Re: Has the XML Documentation been "forgotten" in VB.NET? Don Wash
8/29/2004 11:55:26 AM
H Cor,

Sorry you feel that way. I'm posting to C# newsgroup because C# programmers
has access built-in documentation functionality and when they program with
VB.NET they will definitely look for a workaround, while native VB.NET
programmers who never used C# probably have no clue about XML documentation
that I'm talking about.

And seriously, why documentation support for VB.NET has been not included
but only for C#? I thought VS.NET is suppose to be one IDE for all languages
without discrimination?

I hope it helps.
Don

[quoted text, click to view]

Re: Has the XML Documentation been "forgotten" in VB.NET? Don Wash
8/29/2004 4:02:57 PM
Thanks Rob

Don

[quoted text, click to view]

Re: Has the XML Documentation been "forgotten" in VB.NET? Jon Skeet [C# MVP]
8/30/2004 8:18:19 PM
[quoted text, click to view]

Why? I don't see the connection at all. If I need to know what a method
does, just being able to compile code in the background isn't going to
tell me what I need to know. Could you explain why you see the two
things as being related?

--
Jon Skeet - <skeet@pobox.com>
http://www.pobox.com/~skeet
Re: Has the XML Documentation been "forgotten" in VB.NET? Cor Ligthert
8/31/2004 8:18:33 AM
Jon,

Back, because I have my comments ready however was thinking you would stay
somewhat longer away from this newsgroups.

Cor

Re: Has the XML Documentation been "forgotten" in VB.NET? Cor Ligthert
8/31/2004 8:28:50 AM
[quoted text, click to view]
Humans have intelisense as well, when I get a signal from the IDE that it is
right written I mostly look a little bit "less" to the documentation. When
it goes wrong than I go deeper in the documentation.

However maybe that is as well a typical difference from an Alpha and a Beta.

Cor

AddThis Social Bookmark Button