예제 #1
0
 public object Get(string key)
 {
     return(innerCache.Get(key));
 }
        public void Get_Value()
        {
            string key = "key1";

            cache.Set(key, 123, null);

            var ret = (int?)cache.Get(key);

            Assert.AreEqual(123, ret);
        }