Multiple Attributes
One more quickie I just thought of, you can now in VB 2005 have multiple attributes on different lines.
This will work in VB 2005, but not previous versions.
<Attribute1()> _
<Attribute2()> _
Public Class Test
End Class
Previously, you'd have to do it like this...
<Attribute1(), Attribute2()> _
Public Class Test
End Class
Kind of cool! :) This way you can write it either way now and I'd imagine it makes it easier for code generation tools to dump out attributes.