ReadString() приватный Метод

Reads the string and caches it inside this object.
private ReadString ( ulong address, int charSize, int length = -1 ) : string
address ulong The address.
charSize int Size of the character.
length int The length. If length is -1, string is null terminated
Результат string
Пример #1
0
        /// <summary>
        /// Reads the ANSI/Unicode string from the specified address.
        /// </summary>
        /// <param name="process">The process.</param>
        /// <param name="address">The memory address.</param>
        /// <param name="charSize">Size of the character.</param>
        /// <param name="length">The length. If length is -1, string is null terminated.</param>
        public static string ReadString(Process process, ulong address, int charSize, int length = -1)
        {
            if (address == 0)
            {
                return(null);
            }

            return(process.ReadString(address, charSize, length));
        }