I have an external C # program that runs a Python script using a class Process.
My script returns a numeric code, and I want to get it from my C # program. Is it possible?
The problem is that I get the return code python.exeinstead of the code returned from my script. (For example,. 3)
John terry
source
share