Reporter | Brian (oliwa) |
---|---|
Created | Aug 26, 2010 1:16:58 AM |
Updated | Jan 16, 2012 7:58:36 PM |
Priority | Normal |
Type | Usability Problem |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Ilya Ryzhenkov (orangy) |
Subsystem | Code Editing |
Affected versions | 5.0, 5.1, 6.0, 6.1 |
Fixed in build | No Fixed in build |
I've looked through all of the options and when I initialize an object with parameters ReSharper wants to do this...
var myvar = new Exception()
{
Message = "I don't like this"
};
But I want this...
var myvar = new Exception()
{
Message = "I like this"
};
var myvar = new Exception()
{
Message = "I don't like this"
};
But I want this...
var myvar = new Exception()
{
Message = "I like this"
};