I am a C# programmer (hobby), but I want to convert to a VB.NET programmer. I have seen many posts written in both C# and VB.NET, but I need some links which explain from the basics (like void main void) to the most advanced.
Note: Microsoft blogs (until now whatever I read) do not refer to the basic core level knowledge/things.
Aside from books/blogs, a good way to learn the other side of the C#/VB wall is to write some code in C#, compile it, and open the DLL in Reflector and view as VB code. This will allow you to answer your own questions about VB.NET.
For example, suppose you want to see how to do generics in VB.NET. You write a simple library in C#:
void SomeMethod()
{
List<int> list = new List<int>();
}
Compile this, then open in Reflector, and it will show you:
Sub SomeMethod
Dim list as List(Of Integer) = New List(Of Integer)
End Sub
or something like that...
If you know how to do it in C#, you can probably teach yourself how to do it in VB.NET this way easier than looking for samples online.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With