0
How write program in multiple Languages?
I want to combine Python and C# how to do it...
2 Answers
+ 3
your probably gonna have to make two separate programs and have one call the other
+ 2
one of them could be compiled into a dynamic library and the other one would then import it and use as a normal library, doing so requires specific preparation. for example it is possible to compile c++like code for the use with python using the cython framework and compiler.