<value>property description</value>
where:
The <value> tag lets you describe a property.
Compile with /doc to process documentation comments to a file.
using System; public class Employee { private string name; /// <value>Name accesses the value of the name data member</value> public string Name { get { return name; } set { name = value; } } } public class MainClass { public static void Main() { } }