Esempio n. 1
0
 public static void Insert(string key, object value)
 {
     if (string.IsNullOrEmpty(key))
     {
         throw new ArgumentNullException("key");
     }
     if (null == value)
     {
         throw new ArgumentNullException("value");
     }
     _cache.Insert(key, value);
 }