get() 공개 정적인 메소드

public static get ( PythonDictionary self, object key ) : object
self PythonDictionary
key object
리턴 object
예제 #1
0
 public object get(object key, object defaultValue)
 {
     return(DictionaryOps.get(this, key, defaultValue));
 }
예제 #2
0
 public object get(object key)
 {
     return(DictionaryOps.get(this, key));
 }