porting programs c++ to c#

  • Thread starter Thread starter Cle
  • Start date Start date
C

Cle

hi,
I wonder if there are any programs available which do the
porting c++ to c# for me?
tia Cle
 
That would be a challenge - the point of C# is to make it easy to use the
Frameworks. If your C++ program doesn't use the Frameworks classes, there
may not be a compelling reason to simply port it. What you could do is make
your C++ code into a DLL that your C# program could pInvoke.
 
Back
Top