C# Class Detours.Memory

Static memory methods.
Afficher le fichier Open project: xcvd/Detours

Méthodes publiques

Méthode Description
Read ( IntPtr address, int length ) : byte[]

Reads memory as a byte array.

Write ( IntPtr address, byte value ) : void

Write bytes to memory.

Private Methods

Méthode Description
VirtualProtect ( IntPtr address, uint size, uint newProtect, uint &oldProtect ) : bool

Method Details

Read() public static méthode

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

Write() public static méthode

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. ///
Résultat void