0

In C# i just type "///" and it creates nice comment block with information partially there.

Is there any way to do the same for C++ code? Maybe plugin?

This is just example

   /// <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)
   {
   }
Hooch
  • 28,817
  • 29
  • 102
  • 161
  • Not sure about vs2013 but code::blocks has a button on the toolbar to generate a block comment, none of the details are filled in but tags like \brief, \return and \param are automatically created – jtedit Jun 14 '14 at 11:42
  • 1
    Try http://stackoverflow.com/questions/4059773/generate-xml-documentation-comments-for-in-visual-studio-2010-c – MyDaftQuestions May 29 '15 at 13:42

1 Answers1

0

Try Visual Assist. More info in this question.

Community
  • 1
  • 1