Hi I was wondering if there is any tool that automatically make your source code pretty, like adding comment templates for each method, take care of spacing, tabs and whatnot?
Thanks
Hi I was wondering if there is any tool that automatically make your source code pretty, like adding comment templates for each method, take care of spacing, tabs and whatnot?
Thanks
在 Visual Studio 中,格式化代码的默认热键是ctrl+k+d
. 通过键入///
评论模板将根据上下文插入。
例如,在///
上面输入带有签名的方法static void Main(string[] args)
将给出以下内容:
/// <summary>
///
/// </summary>
/// <param name="args"></param>
static void Main(string[] args)...
开箱即用的 Visual Studio 具有一些格式选项,通过Edit->Advanced->Format Selection
和Edit->Advanced->Format Document
. 这些主要修复间距、制表符和类似问题,但不会添加注释。它还能够添加 XML 文档注释存根,但一次只能添加一个方法(///
在方法、字段、属性、构造函数或类型之上的类型)。
像 Resharper 这样的工具会执行完整的代码清理,它可以自动完成其中的许多事情。