I have List
of Albums objects (photo albums for example). I check properties of the object is null.
Just example:
if (albums.Last() != null
&& albums.Last().Photos != null
&& albums.Last().Photos.Description != null) { //action }
Can I do this check shorter in code?