Commenting technique in C# equivalent in VB.NET

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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
 
The same intellisense as with C# for the documentation the rest is in my
opinion better.
 
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/
 
¤ 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)
 
Back
Top