Special Comment

  • Thread starter Thread starter #Hai
  • Start date Start date
H

#Hai

Hi,
I noticed that there are some special piece of comments in the source-code
generated by Visual Studio.NET when we create a new C# projects.
These comments comes with tags like

/// <summary>
/// Clean up any resources being used.
/// </summary>

What is the purpose of tags <summary> ?
How to use these tag ?
 
[Again, this has nothing to do with most of the groups on the list...
Follow-ups set to the C# group only]
Hi,
I noticed that there are some special piece of comments in the source-code
generated by Visual Studio.NET when we create a new C# projects.
These comments comes with tags like

/// <summary>
/// Clean up any resources being used.
/// </summary>

What is the purpose of tags <summary> ?
How to use these tag ?

They're for XML documentation. Look up "XML documentation" in the index
of MSDN for lots of information about the topic.
 
Back
Top