Visual Basic .NET Shortcircuited And
I think that AndAlso is just so much more elegant than the old Visual Basic 6 And.
if (condition1) AndAlso (condition2) then
..............
end if
is so much nicer than
if (condition1) then
if (condition2) then
................
end if
end if