public Int32 this[long x, long y] { get { return(DInt.BytesToInt32(btable, ((x * rowsize) << 2) + (y << 2))); } set { DInt.Int32ToBytes(value, btable, ((x * rowsize) << 2) + (y << 2)); } }
public Int32 this[long x] { get { return(DInt.BytesToInt32(btable, x << 2)); } set { DInt.Int32ToBytes(value, btable, x << 2); } }