I am using ReSharper 5's "Reformat Code" feature using default settings and it converting this:
_deviceInstanceView.Dispatcher.Invoke(DispatcherPriority.Normal, (ThreadStart)delegate()
{
_deviceInstanceView._DeviceInstanceContainer.UpdateLayout();
});
Into this:
_deviceInstanceView.Dispatcher.Invoke(DispatcherPriority.Normal,
(ThreadStart)
delegate() { _deviceInstanceView._DeviceInstanceContainer.UpdateLayout(); });
Is there a way I can disable this formatting?