<remarks>description</remarks>
where:
The <remarks> tag is where you should specify the bulk of the description for the member. <summary> is where you can specify a brief description.
Compile with /doc to process documentation comments to a file.
public class MyClass { /// <remarks>MyMethod is a method in the MyClass class. /// <para>Here's how you could make a second paragraph in a description. <see cref="System.Console.WriteLine"/> for information about output statements.</para> /// <seealso cref="MyClass.Main"/> /// </remarks> public static void MyMethod(int Int1) { } public static void Main () { } }