public static int GetInt(this ApplicationDataContainer self, string key, int defaultValue)
 {
     return((int)self.getValue(key, defaultValue));
 }
 public static bool GetBoolean(this ApplicationDataContainer self, string key, bool defaultValue)
 {
     return((bool)self.getValue(key, defaultValue));
 }
 public static float GetFloat(this ApplicationDataContainer self, string key, float defaultValue)
 {
     return((float)self.getValue(key, defaultValue));
 }