<paramref name="name"/>
where:
The <paramref> tag gives you a way to indicate that a word is a parameter. The XML file can be processed to format this parameter in some distinct way.
Compile with /doc to process documentation comments to a file.
public class MyClass { /// <remarks>MyMethod is a method in the MyClass class. /// The <paramref name="Int1"/> parameter takes a number. /// </remarks> public static void MyMethod(int Int1) { } public static void Main () { } }