In C#, you can do something like this:
SomeClass someClass = new SomeClass () {
SomeProperty = someValue
};
What is this syntax called?
|
In C#, you can do something like this:
What is this syntax called?
| ||||
|
feedback
|
|
Object initializer is the name. | |||||||||||||||||
feedback
|
(), if they are not supplied the parameter-less constructor will be invoked by default. – CMS Dec 30 '09 at 3:55