Sammary to class

I want to add Summary description to my class in mind i use VB.NET

[74 byte] By [Waleedead] at [2007-12-16]
# 1

hi,
If you mean you want to add it to be viewed @ design time just add ' in the begining of each line

Fayed at 2007-9-9 > top of Msdn Tech,Visual Basic,Visual Basic Language...
# 2
If you go to your project properties and go to the Compile page.

At the bottom is a checkbox that you want to make sure is checked that says "Generate XML documentation file"

Now, in your code, right at the beginning of a method signature, like where it says Public Sub Foo, put your cursor at the beginning of the line

Then, type three single quotes, '''

This should plug in the standard XML Documentation tags, including "Summary".

DavidGuyerMS at 2007-9-9 > top of Msdn Tech,Visual Basic,Visual Basic Language...