Method | Description | |
---|---|---|
Clear ( ) : void |
Clear Method Clears the dictionary. |
|
Copy ( ) : |
Copy Method Returns a copy of the dictionary. |
|
HasKey ( |
HasKey Method Returns true if the object key appears in the dictionary. |
|
HasKey ( string key ) : bool |
HasKey Method Returns true if the string key appears in the dictionary. |
|
IsDictType ( |
IsDictType Method Returns true if the given object is a Python dictionary. |
|
Items ( ) : |
Items Method Returns a sequence containing the items of the dictionary. |
|
Keys ( ) : |
Keys Method Returns a sequence containing the keys of the dictionary. |
|
PyDict ( ) : System |
PyDict Constructor Creates a new Python dictionary object. |
|
PyDict ( |
PyDict Constructor Creates a new PyDict from an existing object reference. Note that the instance assumes ownership of the object reference. The object reference is not checked for type-correctness. |
|
PyDict ( |
PyDict Constructor Copy constructor - obtain a PyDict from a generic PyObject. An ArgumentException will be thrown if the given object is not a Python dictionary object. |
|
Update ( |
Update Method Update the dictionary from another dictionary. |
|
Values ( ) : |
Values Method Returns a sequence containing the values of the dictionary. |
public static IsDictType ( |
||
value | ||
return | bool |