예제 #1
0
 public static DateTime GetDateTime(string key, DateTime defaultValue)
 {
     return(ConvertUtil.ToDateTime(_cache[key], defaultValue));
 }
예제 #2
0
 public static string GetString(string key)
 {
     return(ConvertUtil.ToString(_cache[key], null));
 }
예제 #3
0
 public static int GetInt(string key, int defaultValue)
 {
     return(ConvertUtil.ToInt(_cache[key], defaultValue));
 }