VB.net to C# Convert

Hi,

I want to reach out and find out how other people are converting vb.net to c#, i know they are come fancy website converting programs but they don’t always work.

I’ am looking to covert some large strings of code.

Best bet is manual unfortunately. Teleriks converter is pretty good but you are going to have issues with arrays and such

Specifically in VB.NET, there was no difference between parentheses. So RunMethod(“SomeValue”) looks the same MyRow(“MyColumn”) in VB.NET but converted to C# it would be RunMethod(“SomeValue”) and MyRow[“MyColumn”] (notice the square brackets).

1 Like