public string NextOperation() { int randInt = operationDist.Next(); return(randInt < this.readWriteRandBound ? "READ" : "UPDATE"); }