<param name='name'>description</param>
where:
The <param> tag should be used in the comment for a method declaration to describe one of the parameters for the method.
Compile with /doc to process documentation comments to a file.
public class MyClass { /// <param name="Int1">Used to indicate status.</param> public static void MyMethod(int Int1) { } public static void Main () { } }