Programmatic .NET Language Translation
-
How would I translate from one .NET language to another programmtically (prefrably counting MSIL as a language, but not neccassarily). I have searched through the CodeDOM class, but nothing in there seems helpful. Thanks in advanced, Fahad
-
How would I translate from one .NET language to another programmtically (prefrably counting MSIL as a language, but not neccassarily). I have searched through the CodeDOM class, but nothing in there seems helpful. Thanks in advanced, Fahad
There is probably better ways to do this, but one method I have used to translate from VB.NET to C# is by using Lutz Roeder's brilliant Reflector. This is anyway a very useful program. In it, you can load a compiled assembly and dissamble classes in the language of your choice. It supports C#, Visual Basic, C++ and Chrome. You can download Reflector from here: http://www.aisto.com/roeder/dotnet/[^]
-
There is probably better ways to do this, but one method I have used to translate from VB.NET to C# is by using Lutz Roeder's brilliant Reflector. This is anyway a very useful program. In it, you can load a compiled assembly and dissamble classes in the language of your choice. It supports C#, Visual Basic, C++ and Chrome. You can download Reflector from here: http://www.aisto.com/roeder/dotnet/[^]
I know about reflector. I was asking how to do this in my own programs (I am sure I read somewhere that it is possible)