When I refactor the following line:
Employee e = new Employee();
e.First = "Frank";
e.Last = "Rizzo";
using Resharper's "Use Object Initializer", I get the following:
Employee e = new Employee
             {
                 First = "Frank",
                 Last = "Rizzo"
             };
I really hate this type of formatting because with longer object names and variables it just gets out of control. How can I get Resharper to do the following?
Employee e = new Employee
{
    First = "Frank",
    Last = "Rizzo"
};
 
     
     
    