Removes the variable from the module.

 

   

Syntax
 

[C#]
void Remove(string name)

 

Throws Exceptions ObjectDisposedException: Thrown when this PythonScope has been disposed of.
Throws Exceptions ArgumentNullException: Thrown when name is null.
Throws Exceptions ArgumentException: Thrown when name is not a valid Python identifier.

 

   

Params
 
Name Description
name The name of the variable.

 

   

Notes
 

Removes the variable from the module.

An exception is thrown if the variable does not exist.

 

   

Example
 
None.