IS there a difference between those 2 ways of object creation?
new MyClass() { Id = 1, Code = \"Test\" };
or
MyClass c = ne
They are the same. But we all prefer the first one, it's more readable and clearer, isn't it?