I have this line in VB.NET, but I'm still too newbie to understand it...
Dim foo As map (Of ValidatorType.String, List(Of Single ))
Sorry, could anybody please downgrade this line to VB6?
Thanks for the help!!!
Will
No chance. There is no Map class in VB6, and there were not even
generics in VB 2003 which was already .Net based.
Be aware that generics are an advanced topic, though two links:
http://msdn.microsoft.com/en-us/library/ms172192.aspx
http://msdn.microsoft.com/en-us/library/w256ka79.aspx
In VB6 you could write code that provides the same features but you'd
have to know what it does currently in VB 2008.
Armin