Converting "myself" from C# to VB.NET -


i c# programmer (hobby), want convert vb.net programmer. have seen many posts written in both c# , vb.net, need links explain basics (like void main void) advanced.

note: microsoft blogs (until whatever read) not refer basic core level knowledge/things.

aside books/blogs, way learn other side of c#/vb wall write code in c#, compile it, , open dll in reflector , view vb code. allow answer own questions vb.net.

for example, suppose want see how generics in vb.net. write simple library in c#:

void somemethod() {     list<int> list = new list<int>(); } 

compile this, open in reflector, , show you:

sub somemethod     dim list list(of integer) = new list(of integer) end sub 

or that...

if know how in c#, can teach how in vb.net way easier looking samples online.


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -