示例#1
0
 public Cache(TableCellCache tableCache, ICache baseCache, int hashSize, int maxSize)
     : base(baseCache, maxSize)
 {
     this.tableCache = tableCache;
     this.hashSize   = hashSize;
 }
 protected override void Dispose(bool disposing)
 {
     tableCache = null;
     base.Dispose(disposing);
 }