1

有谁知道是否有一个 XML 评论标签允许人们从评论生成器(特别是沙堡)中隐藏文本?

例如,给定以下内容:

/// <summary>
/// Returns the sum of two numbers.
/// </summary>
/// <hide>I do not want this text in any documentation generated by sandcastle.</hide>
/// <param name="a">The first number.</param>
/// <param name="b">The second number.</param>
/// <returns>A value representing the sum of two numbers.</returns>
public int Sum(int a, int b)
{
 return a + b;
}

我希望 ... 标签之间的文本不会出现在任何沙堡生成的输出中。

有什么想法吗?

4

0 回答 0