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
Post a Comment