Get() public method

Gets the value identified by key
public Get ( string key ) : string
key string Identifier
return string
コード例 #1
0
 public string GetValue(string key, ApplicationSettingsMode mode)
 {
     var kvStore = new PlayerPreferenceKVStore();
     return kvStore.Get(key);
 }