S
Supra
i threw away c++....good new for vb.net 

Lucas said:@TK2MSFTNGP09.phx.gbl:
Older version? What are you talking about?
C# is a managed language like VB.NET. It has all the features of VB.NET and
a couple of extras (VB.NET will probably get those extra features next
version around).
C++ on the other hand is an unmanaged language (but there is a C++ Managed
version too) which you to write native code from VS.NET.
VB.NET, C#.NET, etc all the .NET languages compile to an intermediatary
language for the .NET runtime... so theoretically writing for C++ should be
faster and often is.
The drawback? C++ is more difficult to write for and you need to becareful
in regards to garbage collection, memory access, etc, because all of these
features are no handled by C++ and you must do it yourself.