autoformatting - Formatting issue in Visual Studio 2015 -


there seem few changes (bugs?) in auto-formatting feature of vs2015.

1: has been reported rc not fixed release:

if type:

public string name { get; set; } 

it formatted to:

public string name { get; set; } 

i have "leave block on single line" set.

2: if type, e.g.

if (array.count() > 1)     doone(array); else     if (array.count() == 1)         domany(array); 

it corrected to:

if (array.count() > 1)     doone(array); else     if (array.count() == 1)     domany(array); 


Comments

Popular posts from this blog

java - UnknownEntityTypeException: Unable to locate persister (Hibernate 5.0) -

python - ValueError: empty vocabulary; perhaps the documents only contain stop words -

ubuntu - collect2: fatal error: ld terminated with signal 9 [Killed] -