The <remarks> tag describes additional information about a type or member..
<remarks>description</remarks>
where:
All Types and Members.
The <remarks> tag is used to add additional information about a type or member, supplementing the information specified with <summary>.
[C#] /// <summary> /// You may have some primary information about this class. /// </summary> /// <remarks> /// You may have some additional information about this class. /// </remarks> public class MyClass { /// text for Main public static void Main () { } }
Tag Usage | NDoc Tags | Microsoft's definition
NDoc development is hosted by |