admin管理员组文章数量:1344975
My auto format rules are set to add a space before and after parens in method calls, but they do not apply if the method call is in the same line as a declaration.
I've gone through the formatting settings for my language and turned on spacing options.
This auto formats the spacing in the method call:
bool example = true;
string myString;
myString = GetMyString( example );
But this does not:
bool example = true;
string myString = GetMyString( example);
My auto format rules are set to add a space before and after parens in method calls, but they do not apply if the method call is in the same line as a declaration.
I've gone through the formatting settings for my language and turned on spacing options.
This auto formats the spacing in the method call:
bool example = true;
string myString;
myString = GetMyString( example );
But this does not:
bool example = true;
string myString = GetMyString( example);
Share
Improve this question
asked 16 hours ago
Christie LittleChristie Little
1
New contributor
Christie Little is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1 Answer
Reset to default 0Please try the following options to add a space before and after parens in method calls.
Tools->Options->C#->Code Style->Formatting-Spacing
Checked Insert space within argument list parentheses
版权声明:本文标题:c# - How can you apply auto format to method calls in variable declarations in Visual Studio? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743758154a2533883.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论