/// <summary> /// Writes a sequence of length bytes from the specified byte array, bytes, starting offset(zero-based index) bytes into the byte stream. /// </summary> /// <param name="bytes"></param> /// <param name="offset"></param> /// <param name="length"></param> public void WriteBytes(byte[] bytes, int offset, int length) { _dataOutput.WriteBytes(bytes, offset, length); }