ReleaseLock() public static method

ReleaseLock Method
Release the Python global interpreter lock using a token obtained from a previous call to AcquireLock. For more information, see the "Extending and Embedding" section of the Python documentation on www.python.org.
public static ReleaseLock ( IntPtr gs ) : void
gs System.IntPtr
return void
Ejemplo n.º 1
0
 public void Dispose()
 {
     PythonEngine.ReleaseLock(state);
     GC.SuppressFinalize(this);
 }