Commenting technique in C# equivalent in VB.NET

G

Guest

Hi to everybody.I have a little problem.I usually program with C# but now I
must use VB. NET I have a little problem. In C# I used /// to generate
comment visible with Intellisense to explain how to use a function. Is there
any equivalent method to do the same in VB .NET? Thanks to everybody
 
C

Cor Ligthert

IO,

There is not standard the intelisence in VBNet 2002/3 it will be in 2005
however it is in the VBNet powerpack.

// in C# is a single quote ' in VBNet.

I hope this helps?

Cor
 
C

Cor Ligthert

The same intellisense as with C# for the documentation the rest is in my
opinion better.
 
G

Guest

io said:
Hi to everybody.I have a little problem.I usually program with C# but now I
must use VB. NET I have a little problem. In C# I used /// to generate
comment visible with Intellisense to explain how to use a function. Is there
any equivalent method to do the same in VB .NET? Thanks to everybody
Unfortunaltly Visual Basic .NET 2003 does not have support for XML code
documentation. There are many third part tool for XML code documentation
in Visual Basic .NET. For instance Feser Soft VbXmlComments:
http://www.fesersoft.com/products/vbxmlcomments/default.asp

Anders Norås
http://dotnetjunkies.com/weblog/anoras/
 
P

Paul Clement

¤ Hi to everybody.I have a little problem.I usually program with C# but now I
¤ must use VB. NET I have a little problem. In C# I used /// to generate
¤ comment visible with Intellisense to explain how to use a function. Is there
¤ any equivalent method to do the same in VB .NET? Thanks to everybody

There is a free add-in called VBCommenter that will enable this feature:

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


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 

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