Méthode | Description | |
---|---|---|
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.
|
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. |
Résultat | void |
public static ValueForKey ( this o, String key ) : Object | ||
o | this | The base dictionary. |
key | String | The key to retrieve. |
Résultat | Object |