Python integration with C #

6

Is there any way to integrate C # and Python 3?

I need to create a graphical application quickly and practically.

Currently, I have the Python scripts running 100%, now what I need is to take the inputs from the terminal and play in a visual application and had thought of using C # to create them since I have affinity with this tool.

    
asked by anonymous 12.05.2017 / 22:18

1 answer

5

Compile everything in IronPython . There is version 3 here .

Try to program using classes so that .NET recognizes. Then just play in C #. An integration guide is here .

    
12.05.2017 / 22:59