vote up 2 vote down star
2

I know CodeGear made BabelCode that uses the Code DOM to convert C# to Delphi for .NET. I am curious if there are any other similar tools to convert C# to Delphi Prism? If not, what is involved in using the Code DOM to create one (yeah, that is open ended!)

flag

3 Answers

vote up 4 vote down check

It's in its early stages but Carlo just published a first revision of his open source "C# to Oxygene" tool:

http://code.remobjects.com/p/csharptoxy/

link|flag
vote up 3 vote down

One option I saw was to use .NET Reflector on the C# compiled assembly. It has an Oxygene syntax. That is kind of the long way around and not exactly optimal.

link|flag
not exactly optimal, but it does help. – skamradt Mar 20 at 22:41
vote up 1 vote down

Use BabelCode to convert your C# to Delphi, and then use Oxidizer to convert Delphi to Prism. Not a stellar idea, I realize, but it might at least be a little more automatable than going through Reflector. Good luck.

link|flag
Have you used this method? – Jim McKeeth Mar 23 at 16:37
Nope! I tried BabelCode once or twice back when it was first introduced, and I've never used Oxidizer. Haven't even gotten around to trying Prism yet. Like I said: Good luck. :) – Rob Kennedy Mar 23 at 19:22
I tried BabelCode with some newer C# code with LINQ syntax in it, and the output was blank. . . . . – Jim McKeeth Mar 24 at 19:27
I guess that doesn't surprise me. LINQ didn't exist yet when BabelCode was made. – Rob Kennedy Mar 24 at 20:25
Yeah, I haven't updated BabelCode in a long time -- since we stopped developing C#Builder in fact. That's where the guts for the service came from. – John Kaster Jul 8 at 23:55

Your Answer

Get an OpenID
or

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