Determines whether the module contains the variable.

 

   

Syntax
 

[C#]
bool Contains(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.
return Whether the module contains the variable.

 

   

Notes
 
Determines whether the module contains the variable.

 

   

Example
 
None.