Пример #1
0
 public T Get <T>(Areas area, string field, string key)
 {
     return(cache.Get <T>(area, field, key));
 }
Пример #2
0
        public void NotExistsTest()
        {
            var empty = cache.Get <ComplexType>(Areas.General, "bad^key", "nothing");

            Assert.IsNull(empty);
        }