Tagged Questions
4
votes
1answer
202 views
What is the name of this C# syntax?
In C#, you can do something like this:
SomeClass someClass = new SomeClass () {
SomeProperty = someValue
};
What is this syntax called?
2
votes
1answer
231 views
Order of operations using Object Initializer Syntax
Does the order in which I set properties using the object initializer syntax get executed in the exact same order?
For instance if I do this:
var s = new Person { FirstName = "Micah",
...
1
vote
4answers
184 views
C# Object Initialiser - Reference to the new instance
Can I somehow get a reference to the instance I am creating using object initialiser
var x = new TestClass
{
Id = 1,
SomeProperty = SomeMethod(this)
...