The /// <summary> is the right approach. You simply have to apply this to your methods as well.
Here is a sample: /// <summary> /// This is my class. /// </summary> public class Functions { /// <summary> /// The description /// </summary> /// <param name="username">Username</param> /// <param name="password">Bar</param> /// <param name="LDAP">Foo</param> /// <returns>a meaningfull description</returns> public static Boolean AuthenticateUser (String username, String password, String LDAP) { ...
In addition, enable the XML documentation file in the project properties. In the 'Build' Tab, check 'XML documentation file' and specify a name of your choice.
Hope this helps Michael
|