Visual Studio 2003 - Advice

  • Thread starter Thread starter Ed Crowley
  • Start date Start date
E

Ed Crowley

I'm currently installing VS2003. Does anyone have any tips for converting
existing VB.NET 2002 projects to 2003? Any gotchas to watch for?

Thanks.
 
Class initializers will throw you off a little.

VS2002:
Dim myClass as new MyClass()

VS2003:
Dim myClass as new MyClass

note the missing (), probably a dumb thing to be thrown off by... but it
messed me up when the damn things kept going away.

-CJ
 
It does make sense now though... so as not to confuse it with new-style
array declarations.

--
HTH,
-- Tom Spink, Über Geek

Please respond to the newsgroup,
so all can benefit

"Maybe it's a game called 'Punish the User'"
 
Back
Top