C# Class Quickbeam.ByteAccess.Memory.WinMemoryByteAccess

Encapsulates mapfile access to a specific area of bytes in memory
Inheritance: BaseByteAccess
Afficher le fichier Open project: ChadSki/Quickbeam Class Usage Examples

Méthodes publiques

Méthode Description
WinMemoryByteAccess ( int beginAccessOffset, int accessSize ) : System

Create a new ByteAccess over a map in Halo's memory

Méthodes protégées

Méthode Description
readBytes ( int offset, int size ) : byte[]
writeBytes ( int offset, byte data ) : void

Private Methods

Méthode Description
CopyMemory ( byte dst, byte src, long size ) : void

Method Details

WinMemoryByteAccess() public méthode

Create a new ByteAccess over a map in Halo's memory
public WinMemoryByteAccess ( int beginAccessOffset, int accessSize ) : System
beginAccessOffset int where access begins
accessSize int how far access extends
Résultat System

readBytes() protected méthode

protected readBytes ( int offset, int size ) : byte[]
offset int
size int
Résultat byte[]

writeBytes() protected méthode

protected writeBytes ( int offset, byte data ) : void
offset int
data byte
Résultat void