public static bool GetBool(this EZDatabase instance, string dataName, string key, bool value)
 {
     return(instance.Get(dataName, key, value));
 }
 public static double GetDouble(this EZDatabase instance, string dataName, string key, double value)
 {
     return(instance.Get(dataName, key, value));
 }
 public static string GetString(this EZDatabase instance, string dataName, string key, string value)
 {
     return(instance.Get(dataName, key, value));
 }
 public static int GetInt(this EZDatabase instance, string dataName, string key, int value)
 {
     return(instance.Get(dataName, key, value));
 }
 public static float GetSingle(this EZDatabase instance, string dataName, string key, float value)
 {
     return(instance.Get(dataName, key, value));
 }
Exemplo n.º 6
0
 public static bool GetBool(this EZDatabase instance, string dataName, string key, object value)
 {
     return(Convert.ToBoolean(instance.Get(dataName, key, value)));
 }
Exemplo n.º 7
0
 public static double GetDouble(this EZDatabase instance, string dataName, string key, object value)
 {
     return(Convert.ToDouble(instance.Get(dataName, key, value)));
 }
Exemplo n.º 8
0
 public static float GetSingle(this EZDatabase instance, string dataName, string key, object value)
 {
     return(Convert.ToSingle(instance.Get(dataName, key, value)));
 }
Exemplo n.º 9
0
 public static long GetLong(this EZDatabase instance, string dataName, string key, object value)
 {
     return(Convert.ToInt64(instance.Get(dataName, key, value)));
 }
Exemplo n.º 10
0
 public static int GetInt(this EZDatabase instance, string dataName, string key, object value)
 {
     return(Convert.ToInt32(instance.Get(dataName, key, value)));
 }