[MonoDevelop] Code formatting question
Matt Calder
mvcalder at gmail.com
Mon Oct 11 08:50:01 EDT 2010
All,
I could not find which option controlled the formatting of the following syntax:
Assume we have:
class Foo
{
public int I { get; set; }
}
And now I create a Foo instance:
Foo foo = new Foo{I = 12};
When I use the code formatter on this it inserts a space between the
brace and the "Foo":
Foo foo = new Foo {I = 12};
Can someone tell me which option suppresses this?
Matt
P.S. Yes, I know, if this is the worst problem I face today, I am a
truly fortunate man.
More information about the Monodevelop-list
mailing list