How to convert from c++ to Csharp

  • Thread starter Thread starter Peter Stojkovic
  • Start date Start date
P

Peter Stojkovic

I have a Project in C++
( only mathemat. Calculations )

Is there any too or easy way to convert to C-Sharp ??

Peter
 
Peter,

Without seeing the code, it is not possible to say. There is no direct
conversion between C++ and C# (although some code is easier to translate
than others).

However, you can compile the C++ code as a managed assembly, or access
previously compiled code through the COM interop mechanism or the P/Invoke
layer (if you are exposing the functionality through COM or exported
functions).

Hope this helps.
 
I have a Project in C++
( only mathemat. Calculations )

Is there any too or easy way to convert to C-Sharp ??
Try the 9Rays.Net Spices.Net Decompiler (http://9rays.net), simply compile
your C++ project to managed c++ form and decompile it in Spices.Net to C#.
 
Back
Top