Esempio n. 1
0
 private object PythonContext_GetSystemStateValue(string name)
 {
     return(PythonContext.CallPrivateMethod <object>("GetSystemStateValue", name));
 }
Esempio n. 2
0
 private void PythonContext_SetSystemStateValue(string name, object value)
 {
     PythonContext.CallPrivateMethod("SetSystemStateValue", name, value);
 }
Esempio n. 3
0
 private void PythonContext_InsertIntoPath(int index, string directory)
 {
     PythonContext.CallPrivateMethod("InsertIntoPath", index, directory);
 }