C# 클래스 Detours.Memory

Static memory methods.
파일 보기 프로젝트 열기: xcvd/Detours

공개 메소드들

메소드 설명
Read ( IntPtr address, int length ) : byte[]

Reads memory as a byte array.

Write ( IntPtr address, byte value ) : void

Write bytes to memory.

비공개 메소드들

메소드 설명
VirtualProtect ( IntPtr address, uint size, uint newProtect, uint &oldProtect ) : bool

메소드 상세

Read() 공개 정적인 메소드

Reads memory as a byte array.
public static Read ( IntPtr address, int length ) : byte[]
address System.IntPtr /// The address. ///
length int /// The length. ///
리턴 byte[]

Write() 공개 정적인 메소드

Write bytes to memory.
public static Write ( IntPtr address, byte value ) : void
address System.IntPtr /// The address to write to. ///
value byte /// The value of bytes to be written. ///
리턴 void