Example #1
0
 /// <summary>
 /// Returns the value corresponding to key in the persistent data storage if it exists.
 /// If it doesn't exist, it will return defaultValue.
 /// </summary>
 /// <returns>The int.</returns>
 /// <param name="key">Key.</param>
 /// <param name="defaultValue">Default value.</param>
 public static int GetInt(string key, int defaultValue)
 {
     return(StoringSystem.GetInt(key, defaultValue));
 }