The shorter version is just laziness. And it makes Inheritance less usable.

For example

VB Code:
  1. Dim img as Image = new Bitmap
...lets you take advantage of inheritance

whereas:

VB Code:
  1. Dim img as new Bitmap
...does not. (well its not as black and white as that really but its worth considering)