Bnet.Patcher.Program.ReadByte C# (CSharp) 메소드

ReadByte() 정적인 개인적인 메소드

static private ReadByte ( IntPtr _handle, int offset ) : byte
_handle System.IntPtr
offset int
리턴 byte
        static byte ReadByte(IntPtr _handle, int offset)
        {
            byte result = 0;
            ReadProcessMemory(_handle, offset, out result, 1, IntPtr.Zero);
            return result;
        }