自动评论文件中的所有公共成员
我已将警告打开为错误,现在我需要对所有公共方法进行 XML 注释。
只是为了让我的程序编译,我现在只想放置占位符。
无论如何,是否可以自动将 XML 注释添加到类或文件中的所有公共成员中。
我看到 Ghost 文档,它为您提供了很好的自动生成的 XML 注释,但它看起来仍然一次只处理一个成员。
I have turned on warnings as errors and now i need to XML comment all of my public methods.
just to get my program compiling, i just want to put placeholders for now.
Is there anyway to automatically add XML comments to all of the public members in a class or a file.
I see ghost doc which gives you good autogenerated XML comments but it still looks like it only does one member at a time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 关闭缺少注释的特定警告/现在警告。
You could turn off the specific warning for the lack of comments with /nowarn.
关闭 Xml 注释,直到您完成添加它们。
或者您可以编写一个应用程序来为您生成它们。 或者使用代码片段。
Turn off the Xml comments until you have completed adding them in.
Or you could write an app to generate them for you. Or use a code snippet.