当您在 C# 代码中编写 Xml 文档时(不确定 VB 是否支持此功能),如下所示:
/// <summary>
/// Gets or sets the identity of the Mail Server that is to be used to send the email.
/// </summary>
public string MailServer
{
get { return _mailServer; }
set { _mailServer = value; }
}
三斜杠注释中的 Xml 在 Intellisense 中使用,但似乎在早期版本的 Visual Studio(我认为是 2003)中有一个工具可以遍历代码并组装所有这些元素(以及对象名称) , etc) 以形成一个完整的 Xml 文档。我在 Visual Studio 2008、2010 和 2012 中找不到这个工具。
我很高兴开始学习如何使用 Sandcastle 以及所有这些,但这需要我一些时间,我现在需要这个东西来制作我正在尝试制作的一些文档。
所以问题是,既然这个工具曾经在 VS 中,它是否仍然存在,但我只是无法找到它(模糊)?或者我必须得到一个外部工具(最好是免费的)?