Artemis.Utilities.Memory.Memory.ReadInt64 C# (CSharp) Méthode

ReadInt64() public méthode

Reads 32 bit signed integer at the address
public ReadInt64 ( IntPtr address ) : long
address System.IntPtr Memory address
Résultat long
        public long ReadInt64(IntPtr address)
        {
            var buffer = new byte[8];
            ReadMemory(address, buffer, 8);
            return BitConverter.ToInt64(buffer, 0);
        }