Editorconfig Guide.e

Space after comma

EditorConfig key: csharp-space-after-comma

Space after comma

csharp-space-after-comma

This option controls whether a space should follow a comma.

Default value:

true

Possible values:

  • true
  • false

Examples

true
var list = [1, 2, 3];
false
var list = [1,2,3];