想要一个从 C# 源代码中删除注释的工具
有谁知道这样的工具吗? 需要同时支持“//”和“/* */”。
如果它也支持 aspx 文件那就太好了。
Does anyone know such a tool?
Both support of "//" and "/* */" is needed.
It'd be nice if it supports aspx-files also.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅语义设计 C# 格式化程序。格式化程序可以漂亮地打印您的代码以使其更漂亮,或者保真度打印您的代码以保留其外观。它有一个选项来控制是否保留评论。
See the Semantic Designs C# Formatter. The Formatter can pretty-print your code to make it prettier, or fidelity print your code to preserve the way it looks. It has an option to control whether comments are retained or not.
这可能就是您正在寻找的:注释删除器
或者您可以使用 Visual Studio 中的替换工具来执行此操作。只需创建适当的正则表达式来搜索评论
This is probably what you're looking for: Comment Remover
Or you can do this with Replace tool in Visual Studio. Just create proper Regular expression for searching comments