vote up 0 vote down star

i found a translator for c++ to c# , but it doesn't work. (Code2Code.net)

Test with cout

int main(int argc, char** argv)
{
cout << "Hello World";
return 0;
}

The Results becomes

public static int Main(string [] argv) 
{ 
cout << "Hello World"; 
return 0; 
}

My Question to you, is = is it any other translator that works for C++ to C# (dont need to be free)

flag
That website barely even functions correctly. – Rayne Feb 16 at 16:10
If you don't need it to be free, hire a programmer to do it. ;) – jalf Feb 16 at 18:26

4 Answers

vote up 7 vote down

I am not aware of any as this kind of translation would be very difficult to do. You are trying to translate code that was written in an unmanaged language into a language that is managed. Even if you were able to translate the code you would have almost every method marked as unsafe which would negate most of the benefits of moving to C# in the first place.

This seems like a bad idea - you ought to be thinking about rewriting the application from scratch.

link|flag
My experience tells me that any implementation of a software solution will be has to be intimately tied to the programming language's platform => if not "transforming" the C++ code into C++/CLI (like they did with Quake 2) it has to be re-implemented, sorry. – Cecil Has a Name Aug 9 at 13:04
vote up 4 vote down

My suggestions would be to initially use C++/CLI to port over the C++ code to a managed environment. Once working in the managed world, build new code in C# around it. If there are key areas of the existing code that are actively changing, consider porting to C# at that point.

link|flag
vote up 0 vote down

I don't think any translation engine for C++ -> C# could do more than safe a bit of typing on boilerplate code (fix basic syntax) - as the frameworks used in C++ and C# are fundamentally different, and you will run into problems as soon as the translator has to deal with pointers arithmetics and stuff like this.

Given the complex syntax of C++ and the crazy stuff you can do with it (think Boost) I guess any translator would run into serious trouble sooner or later. See this blog post for some alternative suggestions.

link|flag
vote up 0 vote down

Code2Code.net explicitly states

You accept that this page does only half the work.

...

In most cases, the translated code will not even compile.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.