operator []=(int i, int value) { if (i >= _bytes.length) { _bytes.length = i + 1; _dataDirty = true; } _bytes[i] = value; }