Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Why are C# 3.0 object initializer constructor parentheses optional?

What is the difference between instatiating an object by using

classInstance = new Class() { prop1 = "", prop2 = "" };

and

classInstance = new Class { prop1 = "", prop2 = "" };

share|improve this question
1  
do you need a new keyword in there? – flaviotsf Jun 10 '11 at 17:51

marked as duplicate by Joel B Fant, Jeff Mercado, Eric Lippert, Dour High Arch, Dori Jun 11 '11 at 10:03

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 4 down vote accepted

Nothing. The second is just a short-cut for the first. The first allows you to include arguments to a constructor. So, you can't use the short-cut if the class doesn't have an empty constructor.

You may have an interest in this question:

Why are C# 3.0 object initializer constructor parentheses optional?

And Eric Lippert“s great blog post:

Ambiguous Optional Parentheses, Part One

share|improve this answer

Short answer: Nothing. The () can be used if you want to pass in some constructor args but in your case since you don't have any, you can skip ().

For eg. () is useful here.

  Foo foo = new Foo(someBar){Prop1 = "value1", Prop2 = value2};

but if you are trying to call the parameter-less constructor, it's optional

  Foo foo = new Foo {Prop1 = "value1", Prop2 = value2};
share|improve this answer

There is no difference other than syntax, you are still calling the parameter-less constructor either way.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.