Artemis.Utilities.Memory.Memory.ReadUInt32 C# (CSharp) 메소드

ReadUInt32() 공개 메소드

Reads 32 bit unsigned integer at the address
public ReadUInt32 ( IntPtr address ) : uint
address System.IntPtr Memory address
리턴 uint
        public uint ReadUInt32(IntPtr address)
        {
            var buffer = new byte[4];
            ReadMemory(address, buffer, 4);
            return BitConverter.ToUInt32(buffer, 0);
        }