Why is && preferable to & and || preferable to |?
&&
&
||
|
I asked someone who\'s been programming for years a
if (list.Count() > 14 && list[14] == "foo")
is safe
if (list.Count() > 14 & list[14] == "foo")
would crash if the list doesn't have the right size.