Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any good reason to convert an app written in python to c#?

Tags:

python

c#

.net

I have written several Python tools for my company. Is there any good reason to convert them from Python to C# now that their usefulness has been proven? Would I be better off just leaving them in Python?

like image 700
eric.christensen Avatar asked Nov 28 '22 01:11

eric.christensen


2 Answers

Quote: "If it doesn't break, don't fix it."

Unless your company is moving towards .NET and/or there are no more qualified Python developer available anymore, then don't.

like image 140
Adrian Godong Avatar answered Dec 19 '22 11:12

Adrian Godong


There's IronPython , a python implementation for .NET. You could port it to that if you really need to get away from the "standard" python vm and onto the .NET platform

like image 25
nos Avatar answered Dec 19 '22 10:12

nos