Editorconfig Guide.e

Space between method call name and opening parenthesis

EditorConfig key: csharp-space-between-method-call-name-and-opening-parenthesis

Space between method call name and opening parenthesis

csharp-space-between-method-call-name-and-opening-parenthesis

This option controls whether a space should appear between the method name and its opening parenthesis in a call.

Default value:

false

Possible values:

  • true
  • false

Examples

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