/// <summary> /// Reads a value from memory. /// </summary> /// <param name="dwAddress">Address at which value will be read.</param> /// <param name="nLength">Maximum number of characters to be read.</param> /// <exception cref="Exception">Throws general exception on failure.</exception> /// <returns>Returns the value that was read from memory.</returns> public string ReadASCIIString(uint dwAddress, int nLength) { return(SMemory.ReadASCIIString(this.m_hProcess, dwAddress, nLength)); }