31Dec/080
IsNot
Something I wasn't aware of until I saw it the other day. in VB.NET IsNot is a valid keyword. So instead of writing "If Not Object Is Nothing Then" you can write the more grammatically correct/intuitive statement "If Object IsNot Nothing Then". Ah, it's the little things.