is there a c# -> c++ code converter out there ?

  • Thread starter Thread starter Jon Rea
  • Start date Start date
J

Jon Rea

is there a c# -> c++ code converter out there ?

Hi people,

I was just wondering if there is a C# to C++ converter out there. I have
some working c# code and need to integrate it into a non-managed c++
program. The classes used are all user defined and use simple floats ints
etc, so its just a matter of converting syntax and adding proper pointers. A
converter program would therefore save me a lot of time ...

Many thanks for any suggestions in advance,
Jon
 
Jon,

I don't think there is a converter out there per se, but you should be
able to find a decompiler that will decompile assmeblies into C++ code. If
your classes are really all user-defined and use similar types, then you
should be able to just get the decompiled results and then copy-and-paste
them.

Hope this helps.
 
is there a c# -> c++ code converter out there ?

Hi people,

I was just wondering if there is a C# to C++ converter out there. I have
some working c# code and need to integrate it into a non-managed c++
program. The classes used are all user defined and use simple floats ints
etc, so its just a matter of converting syntax and adding proper
pointers. A
converter program would therefore save me a lot of time ...

Try the 9Rays.Spices.Net decompiler(http://9rays.net/products/spices ).
With this tool you can convert your assembly to 6 languages: IL, C#,
VB.Net, MC++, J#, Delphi.Net
 
Back
Top