Editorconfig Guide

Generate your .editorconfig file with ease.

Space around binary operators

csharp-space-around-binary-operators

Default value:

before_and_after

Possible values:

  • before_and_after
  • none
  • ignore

Examples

before_and_after
var x = a + b;
none
var x = a+b;
ignore
var x = a +b;