Method | Description | |
---|---|---|
AsInt ( |
AsInt Method |
|
IsIntType ( |
IsIntType Method Returns true if the given object is a Python int. |
|
PyInt ( |
PyInt Constructor Creates a new PyInt from an existing object reference. Note that the instance assumes ownership of the object reference. The object reference is not checked for type-correctness. |
|
PyInt ( |
PyInt Constructor Copy constructor - obtain a PyInt from a generic PyObject. An ArgumentException will be thrown if the given object is not a Python int object. |
|
PyInt ( byte value ) : System |
PyInt Constructor Creates a new Python int from a byte value. |
|
PyInt ( int value ) : System |
PyInt Constructor Creates a new Python int from an int32 value. |
|
PyInt ( long value ) : System |
PyInt Constructor Creates a new Python int from an int64 value. |
|
PyInt ( short value ) : System |
PyInt Constructor Creates a new Python int from an int16 value. |
|
PyInt ( string value ) : System |
PyInt Constructor Creates a new Python int from a string value. |
|
ToInt16 ( ) : short |
ToInt16 Method Return the value of the Python int object as an int16. |
|
ToInt32 ( ) : int |
ToInt32 Method Return the value of the Python int object as an int32. |
|
ToInt64 ( ) : long |
ToInt64 Method Return the value of the Python int object as an int64. |
Method | Description | |
---|---|---|
PyInt ( sbyte value ) : System | ||
PyInt ( uint value ) : System | ||
PyInt ( ulong value ) : System | ||
PyInt ( ushort value ) : System |
public static AsInt ( |
||
value | ||
return |
public static IsIntType ( |
||
value | ||
return | bool |