Need to convert C # to VB.NET

I have C # source code that I got from the internet and I want it in VB.NET. How would you convert it, because I don't know C #.

+2


source to share


4 answers


I found some translators after doing a simple search, but this one looks cool. No installation required! ... although I have never used it.



+5


source


Another way is to compile it, drag and drop the assembly into Reflector and then decompile it to VB.NET



+1


source


If I remember correctly, you can have multiple source languages ​​in one project. They just have to be in different files. You should be able to call the C # class from the vb.net class without any major problems. It may not be the prettiest option, but it might work for your situation.

0


source


You can have a VB project in the same solution as a C # project and use classes from another, but you cannot have VB and C # source files compiled in the same project.

0


source







All Articles