Interface IPrefsImplementation
public interface IPrefsImplementation
Methods
DeleteAll()
void DeleteAll()
DeleteKey(string)
void DeleteKey(string key)
Parameters
key
string
GetFloat(string)
float GetFloat(string key)
Parameters
key
string
Returns
GetFloat(string, float)
float GetFloat(string key, float defaultValue)
Parameters
Returns
GetInt(string)
int GetInt(string key)
Parameters
key
string
Returns
GetInt(string, int)
int GetInt(string key, int defaultValue)
Parameters
Returns
GetString(string)
string GetString(string key)
Parameters
key
string
Returns
GetString(string, string)
string GetString(string key, string defaultValue)
Parameters
Returns
HasKey(string)
bool HasKey(string key)
Parameters
key
string
Returns
Save()
void Save()
SetFloat(string, float)
void SetFloat(string key, float value)
Parameters
SetInt(string, int)
void SetInt(string key, int value)
Parameters
SetString(string, string)
void SetString(string key, string value)