在C#XML注释中,能否详细说明类型a列表<;T>;包含?

在C#XML注释中,能否详细说明类型a列表<;T>;包含?,c#,sandcastle,xml-documentation,C#,Sandcastle,Xml Documentation,目前,我正在记录以下列表: /// <summary> /// Returns a <see cref="List{T}" /> of type <see cref="Person" />. /// </summary> public List<Person> ListExample() { } // ///返回类型的。 /// 公共列表ListExample() { } Sandcastle似乎没有解释以下内容: /// &l

目前,我正在记录以下列表:

/// <summary>
/// Returns a <see cref="List{T}" /> of type <see cref="Person" />.
/// </summary>
public List<Person> ListExample()
{

}
//
///返回类型的。
/// 
公共列表ListExample()
{
}
Sandcastle似乎没有解释以下内容:

/// <summary>
/// Returns a <see cref="List{Person}" />.
/// </summary>
public List<Person> ListExample()
{

}
//
///返回一个。
/// 
公共列表ListExample()
{
}
有什么建议吗?
谢谢。

如果你点击了Person部分,那就感谢Person类。另外,你最好使用HTML作为
,而不是
{T}
,使用
T
。有趣的Wai Ha Lee。。。为什么?