Import Python lib in C #

There is an existing python library that I have to create in my C # code. What is the best way to do this? And How? I am not very familiar with python, so IronPython, py2exe confused me. Please, help.

+5
source share
1 answer

You will almost certainly be better off finding an alternative to C # /. NET for this library. What is it?

If you really need to do this, IronPython is the best option. There are several guides for implementing IronPython code in C #, like this one .

+4
source

All Articles