-5

.NET says it supports 44 languages.for example i write the code in C# in execution time it converted in to IL and again coverted in to Machine language.is there any chance to get VB Code when iam compile the C# code. IS THERE ANY CHANCE

benz
  • 35
  • 2
  • 9

2 Answers2

1

There are lots of free (and some not free) converters but these are mainly for C# -> VB.NET or vice versa:

http://converter.telerik.com/

http://www.carlosag.net/Tools/CodeTranslator/

http://www.developerfusion.com/tools/convert/csharp-to-vb/

Tangible software provide various conversions from some specified languages to others:

http://www.tangiblesoftwaresolutions.com/Demo.htm

There is no built in way to convert from .net language a to .net language x

Matt Wilko
  • 26,994
  • 10
  • 93
  • 143
0

Yes, you can use one of several available decompilers to decompile to VB or c# from IL. This web page lists some of them (free): http://blog.wibeck.org/2013/02/free-options-for-reflector-net-decompiler/

Kell
  • 3,252
  • 20
  • 19