Witam.
Potrzebuje pomocy w czytelności kodu. Internety mówią, że to co chce uzyskać jest możliwe tylko za pomocą Resharpera.

JAK JEST

SellyWarehouseQuantity sellyWarehouseQuantity = new SellyWarehouseQuantity
{
       Products = new List<SellyWarehouseQuantityData>
                   {
                       new SellyWarehouseQuantityData
                       {
                           ProductId = sellyProduct.Id,
                           WarehouseId = 1,
                           Quantity = (int)optimaProduct.Quantity
                       }
                   }
                };

JAK CHCE ŻEBY BYŁO

SellyWarehouseQuantity sellyWarehouseQuantity = new SellyWarehouseQuantity
{
  Products = new List<SellyWarehouseQuantityData>
  {
    new SellyWarehouseQuantityData
    {
      ProductId = sellyProduct.Id,
      WarehouseId = 1,
      Quantity = (int)optimaProduct.Quantity
    }
  }
};

Skrót klawiszony Ctrl+K+F nie formatuje zaznaczonego kodu... Kompletnie to nieczytelne. Jest coś co to ogarnie bez płacenia pięniedzy?