Méthode | Description | |
---|---|---|
Append ( |
Append Method Append an item to the list object. |
|
AsList ( |
AsList Method Converts a Python object to a Python list if possible, raising a PythonException if the conversion is not possible. This is equivalent to the Python expression "list(object)". |
|
Insert ( int index, |
Insert Method Insert an item in the list object at the given index. |
|
IsListType ( |
IsListType Method Returns true if the given object is a Python list. |
|
PyList ( ) : System |
PyList Constructor Creates a new empty Python list object. |
|
PyList ( |
PyList Constructor Creates a new PyList from an existing object reference. Note that the instance assumes ownership of the object reference. The object reference is not checked for type-correctness. |
|
PyList ( |
PyList Constructor Copy constructor - obtain a PyList from a generic PyObject. An ArgumentException will be thrown if the given object is not a Python list object. |
|
Reverse ( ) : void |
Reverse Method Reverse the order of the list object in place. |
|
Sort ( ) : void |
Sort Method Sort the list in place. |
public static AsList ( |
||
value | ||
Résultat |
public Insert ( int index, |
||
index | int | |
item | ||
Résultat | void |
public static IsListType ( |
||
value | ||
Résultat | bool |