My favorite trick is using the null coalesce operator and parens parentheses to automagically instantiate collections for me.
private IList<Foo> _foo;
public IList<Foo> ListOfFoo
{ get { return _foo ?? (_foo = new List<Foo>()); } }
|
6 | Minor edit: grammar/spelling/case/punctation/etc. | ||
|
My favorite trick is using the null coalesce operator and parens parentheses to automagically instantiate collections for me.
|
||||
|
5 | Rollback to Revision 3 | ||
|
My favorite trick is using the null coalesce operator and parens to automagically instantiate collections for me.
Please do not mistake this for the following
My entry does the following:
The second example does this:
In other words, in my implementation
returns true. In the second implementation, it returns FALSE. Doing it the second way will result in the following bug:
|
||||
|
4 | clearing up | ||
|
My favorite trick is using the null coalesce operator and parens to automagically instantiate collections for me.
Please do not mistake this for the following
My entry does the following:
The second example does this:
In other words, in my implementation
returns true. In the second implementation, it returns FALSE. Doing it the second way will result in the following bug:
|
||||
|
3 | added 5 characters in body | ||
|
2 | deleted 52 characters in body | ||
|
Post Made Community Wiki by Community♦
|
||||
|
1 |
|
||