Editorconfig Guide.e

Space between method declaration parameter list parentheses

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

Space between method declaration parameter list parentheses

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

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

Default value:

false

Possible values:

  • true
  • false

Examples

true
void Method( int x ) {}
false
void Method(int x) {}