<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()
{
}
}