Editorconfig Guide.e

Space after dot

EditorConfig key: csharp-space-after-dot

Space after dot

csharp-space-after-dot

This option controls whether a space should follow a dot in member access expressions.

Default value:

false

Possible values:

  • true
  • false

Examples

true
var x = y. Method();
false
var x = y.Method();