Gets the variable's integer value.

 

   

Syntax
 

[C#]
long GetInt64Value(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.
Throws Exceptions InvalidCastException: Thrown when the value cannot be represented as an Int64.
Throws Exceptions OverflowException: Thrown when the value is outsde the range of an Int64.

 

   

Params
 
Name Description
name The name of the variable.
return The integer value.

 

   

Notes
 
Gets the variable's integer value.

 

   

Example
 
None.