Converting C# knowledge to VB.NET any potential problems?
I have a team with people that are quite comfortable in C# but we got a requirement to write a project in VB.net. How hard would it be to think in C# and on the fly convert to VB? Is that doable? Could you list the issues that we can come across? I heard that VB.net doesn't have closures. Is that still true for .net 3.5? If you are approaching VB.Net with the mindset of C# it's best to set the following options in the project Option Strict On Option Explicit On Option Infer On This essentially removes the late binding semantics of VB.Net and forces it to be a strictly typed language. This will