如何在Visual Studio 2013中快速将XML注释添加到C ++代码中

时间:2014-06-14 11:28:33

标签: c++ xml visual-c++ visual-studio-2013 intellisense

在C#中,我只需输入" ///"它创建了一个很好的评论块,其中包含部分信息。

有没有办法对C ++代码做同样的事情? 也许是插件?

这只是示例

   /// <summary>
   /// Description for SomeMethod.</summary>
   /// <param name="s"> Parameter description for s goes here</param>
   /// <seealso cref="String">
   /// You can use the cref attribute on any tag to reference a type or member 
   /// and the compiler will check that the reference exists. </seealso>
   public void SomeMethod(string s)
   {
   }

1 个答案:

答案 0 :(得分:0)

试试Visual Assistthis问题中的详细信息。