public void SetUlong(uint idx, ulong value)
 {
     if (BTreeRoot.GetUlong(idx) != value)
     {
         MakeWritable();
         BTreeRoot.SetUlong(idx, value);
     }
 }
 public ulong GetUlong(uint idx)
 {
     return(BTreeRoot.GetUlong(idx));
 }