SomeClass class = new SomeClass() { SomeProperty = "" };Is the same as:
SomeClass class = new SomeClass { SomeProperty = "" };What?? Look closely. The "new SomeClass" no longer needs the () if you are using 3.0's property initializers. Not ground breaking, but interesting.