Željko Perić

Željko Perić

  • 450
  • 3k
  • 202.6k

VS 2022 formatting code in text editor

Jul 4 2022 6:50 PM

Hello,

I have this problem with code clean up option in VS 2022. Observe this peace of code and how I like to format code..

            Field_delimiter     = ',';
            String_delimiter    = '"';
            Carriage_Return     = '\r';
            Line_Feed           = '\n';

But when I apply code clean up option, I get this :

            Field_delimiter = ',';
            String_delimiter = '"';
            Carriage_Return = '\r';
            Line_Feed = '\n';

 

How to force code clean up to ignore spacing in statements.

 

 


Answers (1)