object browser -- comments and documentation

  • Thread starter Thread starter Adie
  • Start date Start date
A

Adie

Hi, I'm starting to reuse quite a bit of my code through namespace
references and would like that when I view the object in the "object
browser" that I can see my comments about the method, property or whatever.

All I get at the moment is the method's signature.
 
Add sth like the following before class, method etc. Search for other "Tags
for Documentation Comments"



/// <summary>

/// Summary description for Class1.

/// </summary>
 
Back
Top