<value> (C# 程式設計手冊)
<value>property-description</value>
參數
- property-description
屬性的描述。
備註
<value> 標記讓您描述屬性代表的值。 請注意,當您透過 Visual Studio .NET 開發環境的程式碼精靈加入一個屬性時,該新屬性將會加上一個 <summary> 標記。 接著,您應該手動加入一個 <value> 標記,來說明該屬性表示的值。
使用 /doc 進行編譯,將文件註解處理為檔案。
範例
// compile with: /doc:DocFileName.xml
/// text for class Employee
public class Employee
{
private string _name;
/// <summary>The Name property represents the employee's name.</summary>
/// <value>The Name property gets/sets the value of the string field, _name.</value>
public string Name
{
get
{
return _name;
}
set
{
_name = value;
}
}
}
/// text for class MainClass
public class MainClass
{
/// text for Main
static void Main()
{
}
}