Example #1
0
 public CacheEntryStack Push(CacheEntry c)
 {
     return(new CacheEntryStack(this, c));
 }
Example #2
0
 public CacheEntryStack <TKey> Push(CacheEntry <TKey> c)
 {
     return(new CacheEntryStack <TKey>(this, c));
 }