Bnet.Patcher.Program.ReadByte C# (CSharp) Method

ReadByte() static private method

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