コード例 #1
0
 public static bool Exist(string key)
 {
     if (string.IsNullOrEmpty(key))
     {
         throw new ArgumentNullException("key");
     }
     return(_cache.Exist(key));
 }