9

有没有办法直接从 Visual Studio 的代码文档中生成可读的文档文件?(也考虑到 2010 年)

代码示例:

/// <summary>
/// Convert a number to string
/// </summary>
/// <param name="number">An integer number to be converted to string</param>
/// <returns>Number as string</returns>
/// <example>
/// <code>
///     var s = MyMethod(5);
/// </code>
/// </example>
/// <exception cref="Exception">In case it can't convert</exception>
/// <remarks>
/// Whatever
/// </remarks>
public string MyMethod(int number)
{
    return number.ToString();
}
4

4 回答 4

9

使用DocProject。它也可以创建 HTML 文档以及 CHM。您应该先安装Sandcastle

于 2010-05-15T03:19:36.000 回答
4

你可以看看doxygen

于 2010-05-15T03:20:11.270 回答
4

VSdocman可以直接从 Visual Studio 中完成。

于 2010-05-15T11:11:59.193 回答
2

Sandcastle 帮助文件生成器是另一个

于 2010-05-15T22:06:04.690 回答