Editorconfig Guide.e

Space between method call empty parameter list parentheses

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

Space between method call empty parameter list parentheses

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

This option controls whether a space should appear between the parentheses of an empty argument list in a method call.

Default value:

false

Possible values:

  • true
  • false

Examples

true
Method( );
false
Method();