<summary>description</summary>
where:
The <summary> tag should be used in the comment to provide a short description. Use <remarks> to indicate a longer description.
Compile with /doc to process documentation comments to a file.
public class MyClass { /// <summary>MyMethod doesn't do very much.</summary> public static void MyMethod(int Int1) { } public static void Main () { } }