Editorconfig Guide.e

Space between method call parameter list parentheses

EditorConfig key: csharp-space-between-method-call-parameter-list-parentheses

Space between method call parameter list parentheses

csharp-space-between-method-call-parameter-list-parentheses

This option controls whether spaces should be inserted between the parameter-list parentheses and the arguments in a method call.

Default value:

false

Possible values:

  • true
  • false

Examples

true
Method( x, y );
false
Method(x, y);