The more and more of .NET code I see I am beginning to wonder if people have scrapped naming conventions...

Do .NET coders still use obj, str, bln etc?

Also. In VB6:
VB Code:
  1. Dim objWoof As New Object
The above can be done, but is frowned upon by some users. The following is how it's supposed to be done "correctly"
VB Code:
  1. Dim objWoof As Object
  2.    'Blah blah blah
  3.    Set objWoof = New Object
Is this the case for .NET coz all code I have seen uses the Dim As New method...????

Any advantage in .NET of doing this?

Woka