Formating of C# 4.0 constructors followed by an Object Initializer list lacks correct alignment of the { } brackets.
for (int i = 0; i < categories.Length; i++)
{
DataModel.Calculations.SerCategory serCategory = new DataModel.Calculations.SerCategory()
{
Name = categories[i],
MaxSERValue = categorySer[i]
};
calculationParameters.SERCategories.ListSERCategories.Add(serCategory);
}
Not sure if we are missing an option at this point or if it is an exceptional behaviour
What should the alignment look like?
Ticket can be closed