get() public static method

public static get ( PythonDictionary self, object key ) : object
self PythonDictionary
key object
return object
Ejemplo n.º 1
0
 public object get(object key, object defaultValue)
 {
     return(DictionaryOps.get(this, key, defaultValue));
 }
Ejemplo n.º 2
0
 public object get(object key)
 {
     return(DictionaryOps.get(this, key));
 }