c++ - Visual Studio C++ 文档生成器

标签 c++ visual-studio visual-c++ documentation

有没有办法在 visual-c++ 项目中获取文档(如 javadoc)?

我正在使用 Visual Studio 2010。

谢谢!

最佳答案

您也可以使用 VS2010 支持的 XML-Documentation 格式。 http://msdn.microsoft.com/en-us/library/ms177226%28VS.80%29.aspx

注释您的代码后,您可以使用 SandcaSTLe 创建类似 MSDN 的文档:http://sandcastle.codeplex.com/ . (这里是 SandcaSTLe 的 GUI 表示,它更容易使用:https://github.com/EWSoftware/SHFB)

我使用 AtomineerUtils 自动创建 XML-Documentation header 。这个工具会给你很多帮助。您可以在这里获得免费的基础版本:http://www.atomineerutils.com/products.php

关于c++ - Visual Studio C++ 文档生成器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2840496/

相关文章:

c++ - 为什么 clang 会使我的简单阶乘函数过于复杂?

visual-studio - 在 VS2010 中将目标更改为 x86

visual-studio - pubspec.yaml 第 17 行第 5 列错误 : A dependency may only have one source

c++ - 谁对谁错又名 GCC vs Visual Studio

c++ - 将粒子位置(glm vec3s)顶点传递给顶点缓冲区对象

c++ - 带有 SFML 的动态光照程序,1.6 到 2.x 转换

c++ - 如何使用 MFC/C++ 进行 HTTP 传输?

c# - 通过扩展在 Visual Studio 设计器中的 windows.forms.controls 上绘制装饰

c++ - 如何将.lib 导入.dll?

c++ - 具有 C 链接的函数能够返回类类型?