Code style with wrapping method calls
Hi,
Given the code:
collection.Add(new Class { ID = 1, Title = "Test" });
ReSharper will rewrap that into:
collection.Add(
new Class
{
ID = 1,
Title = "Test"
});
But to me, it seems obvious that the last ); should be on the next line, at the same level as collection.Add
Is there an option somewhere to make it do what I think it should?
-- Regards, Morten
Please sign in to leave a comment.