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)
{
}