-
VB.Net Intro & Tutorials
hello,
I want to start with VB.Net.
Can anybody let me know some tutorial sites or materials which is better to get started.
I have programming experience in C++ and VB.
i want a good and elaborate introduction to be clear as of what it is.
thanx.
regards
shubs
-
There are a few good sites when plenty of examples and tutorials
http://www.gotdotnet.com
http://www.c-sharpcorner.com
the 2nd is mostly C# stuff, but since you have C++ experience, you should have no problem with it as C# and VB .NET are virtually the same except for syntax. The real trick is to learn how to use the .NET framework classes and how it works. The syntax is the easy part. Once you learn the basic use of the framework stuff, you should have no problem writing in C# or VB .NET as you are already familiar with both syntaxes.
When I say learn the framewoek, I mean how to use dll's/namespaces/classes/etc.
Things like System.Windows.Forms.Button which is the built in Button class that creates a button on your form. That is the stuff you should have a grasp on.