vote up -2 vote down star
1

I have some Python code which I am finding difficult to read and I don't really want to learn the Python syntax if I can help it.

Can someone point me to a Python to C# converter?

flag
Some people are pretty mean, Akshay. Good luck with the Python. – DOK Dec 10 '08 at 23:49
I'm no big python lover, but maybe you should just go through the pain of learning it... Part of being a programmer is being adaptable. – Bill K Dec 11 '08 at 0:22
its like asking to convert lisp code to j# ... you just shouldn't do it. – fuentesjr Dec 11 '08 at 2:36
Good question - sometimes you find a library in python that you need to re-use in another language, and the performance penalty of calling the interpreter many times is killer. – Chris Marasti-Georg Oct 12 at 15:42

4 Answers

vote up 14 vote down check

I would think in the time it takes you to figure out a way to do such a conversion with output that is actually useful, you could learn Python enough to follow the code. It has one of the simplest syntaxes of any language and some people even refer to it as "executable pseudo-code."

You might also learn something else along the way...

link|flag
vote up 2 vote down

Thanks a lot for all the suggestions and comments guys! I think I'm just going to have bite the bullet and learn enough Python to get by ... yes it's part of being a programmer, and I know it should be fairly straightforward, but I wanted to just understand the code and not get distracted by the syntax ...

link|flag
2  
Could you update your question here when you've gone through? I'd like to hear how your experience went. – monkut Dec 11 '08 at 2:57
vote up 2 vote down

You can try to compile your python app using IronPython (http://www.codeplex.com/Wiki/View.aspx?ProjectName=IronPython) to .NET, this should be possible without or just minor changes. This way you can make use of alle the .NET features from python.

Then you can decompile your IronPython assembly with an .NET decompiler like Lutz Roeders Reflector (http://www.red-gate.com/products/reflector) which can decompile whole Assemblies into Visual Studio projects. This way you can convert from ANY .NET Langauge into one of the supported languages of this program (C#.VB.NET,MC++,Delphi,Chrome)

link|flag
This is going to be AWFULLY difficult – Eric Dec 10 '08 at 23:48
+1 of answering the question -0.5 for a solution that's worse than the problem /j (but I round up today) – BCS Dec 10 '08 at 23:48
this technically works, although the resulting C# is incredibly unreadable because all operations and types are custom DLR classes and functions. – Jimmy Dec 10 '08 at 23:48
vote up 7 vote down

I'd rather suspect that such a tool doesn't exist. And if it did, it's output would be harder for a C# programmer to read than the input would be.


A better choice would be to uses IronPython to compile the Python and then use it from c#. if those guys did there job right, you should get all the intellisense you need to never look at the python. OTHO moding the code might be a pain.

link|flag

Your Answer

Get an OpenID
or

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