automated translation from c to c#

  • Thread starter Thread starter Jerry Shea
  • Start date Start date
J

Jerry Shea

Does anyone know of a tool which can accomplish this?

I suppose I could port my C program to managed VC++ then decompile.

Anyone know of any other mechanisms?
 
Jerry said:
Does anyone know of a tool which can accomplish this?
I suppose I could port my C program to managed VC++ then decompile.
Anyone know of any other mechanisms?

No. The strucure of the languages is completely different, specially when
comparing C to C#. C++ is closer to C#, but still no cigar.

You pretty much have to rewrite your app, which, in this case, is a good
thing. Converting stuff like malloc() calls would be a pain, if it's even
possible.
 
Back
Top