I have just learned about object initializers and was wondering what the best practices for when to use them are.
This is what I read about them: http://msdn.microsoft.com/en-us/library/vstudio/bb384062.aspx It makes it clear that they are necessary for creating anonymous types but I would like to know if I should try to prefer them to normal constructors in all the other cases.
I currently see the following problems with using them:
So my working theory is: Don't use object initializers they encourage stupid things.