/// <summary> /// Reads a string with no known length, ends when the first \0 char is reached. /// /// Advances the position. /// </summary> /// <returns>the read string</returns> public string ReadASCIIString() { return(UR.ReadAnsi()); }