ReSharper 重新格式化、数组初始化、逗号后空格
ReSharper 将代码重新格式化
int[] array = new int[width, height];
为“
int[] array = new int[width,height];
但我想要逗号后有一个空格!”选项里没找到这个设置...
ReSharper reformats code
int[] array = new int[width, height];
to
int[] array = new int[width,height];
But I want a space after comma! Can't find this setting in options...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您转到 Resharper 选项 -> 语言 -> C# -> 格式设置样式 -> 空格,“其他”下有一个名为“逗号后”的选项,
如果激活该选项,Resharper 将添加您正在查找的空格为了。
请注意,它也会改变方法调用中的情况,也可能改变其他地方的情况。
If you go to Resharper options->Languagues->C#->Formatting Style->Spaces, there is an option under "Other" called "After comma"
If you activate that, Resharper will add the space you are looking for.
Beware that it also changes that in method calls and probably in other places too.