Exemplo n.º 1
0
 internal byte[] Cell;     // Pointers to the body of the overflow cell
 internal OverflowCell Copy()
 {
     var cp = new OverflowCell();
     if (Cell != null)
     {
         cp.Cell = C._alloc(Cell.Length);
         Buffer.BlockCopy(Cell, 0, cp.Cell, 0, Cell.Length);
     }
     return cp;
 }
Exemplo n.º 2
0
            internal byte[] Cell;  // Pointers to the body of the overflow cell
            internal OverflowCell Copy()
            {
                var cp = new OverflowCell();

                if (Cell != null)
                {
                    cp.Cell = C._alloc(Cell.Length);
                    Buffer.BlockCopy(Cell, 0, cp.Cell, 0, Cell.Length);
                }
                return(cp);
            }