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