Exemplo n.º 1
0
 public static string GetString(this EZDatabase instance, string dataName, string key, string value)
 {
     return(instance.Get(dataName, key, value));
 }
Exemplo n.º 2
0
 public static bool GetBool(this EZDatabase instance, string dataName, string key, bool value)
 {
     return(instance.Get(dataName, key, value));
 }
Exemplo n.º 3
0
 public static float GetSingle(this EZDatabase instance, string dataName, string key, float value)
 {
     return(instance.Get(dataName, key, value));
 }
Exemplo n.º 4
0
 public static double GetDouble(this EZDatabase instance, string dataName, string key, double value)
 {
     return(instance.Get(dataName, key, value));
 }
Exemplo n.º 5
0
 public static int GetInt(this EZDatabase instance, string dataName, string key, int 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 int GetInt(this EZDatabase instance, string dataName, string key, object value)
 {
     return(Convert.ToInt32(instance.Get(dataName, key, value)));
 }