C# 클래스 KNFoundation.KNKVC.KNDictionaryKVC

IDictionary specific KVC features.
파일 보기 프로젝트 열기: bt-browser/KNFoundation

공개 메소드들

메소드 설명
SetValueForKey ( this o, Object value, String key ) : void

Adds the given value for the given key in the dictionary. If the key doesn't exist, it will be added. If it does, the existing value will be replaced.

ValueForKey ( this o, String key ) : Object

Gets the value for the given key in the dictionary.

메소드 상세

SetValueForKey() 공개 정적인 메소드

Adds the given value for the given key in the dictionary. If the key doesn't exist, it will be added. If it does, the existing value will be replaced.
public static SetValueForKey ( this o, Object value, String key ) : void
o this The base dictionary.
value Object The value to set.
key String The key to set.
리턴 void

ValueForKey() 공개 정적인 메소드

Gets the value for the given key in the dictionary.
public static ValueForKey ( this o, String key ) : Object
o this The base dictionary.
key String The key to retrieve.
리턴 Object