I have two files, a regular python (.py) file and a visual studio C# file (.cs). I want to use a function in the python file which returns a string and use that string in the C# file.
Basically:
#This is the Python file!
def pythonString():
return "Some String"
and
//This is the C# file!
namespace VideoLearning
{
string whatever = pythonString(); // This is from the Python file.
}
How can I sort of link these two files together? Thanks.