Ejemplo n.º 1
0
 public void Set(CacheByKey rhs)
 {
     foreach (string k in rhs.Keys)
     {
         Set(k, rhs.Get(k));
     }
 }
Ejemplo n.º 2
0
 public object Get(int id)
 {
     return(cache.Contains(id) ? cache.Get(id) : null);
 }