C# 클래스 Quickbeam.ByteAccess.Memory.WinMemoryByteAccess

Encapsulates mapfile access to a specific area of bytes in memory
상속: BaseByteAccess
파일 보기 프로젝트 열기: ChadSki/Quickbeam 1 사용 예제들

공개 메소드들

메소드 설명
WinMemoryByteAccess ( int beginAccessOffset, int accessSize ) : System

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

보호된 메소드들

메소드 설명
readBytes ( int offset, int size ) : byte[]
writeBytes ( int offset, byte data ) : void

비공개 메소드들

메소드 설명
CopyMemory ( byte dst, byte src, long size ) : void

메소드 상세

WinMemoryByteAccess() 공개 메소드

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
리턴 System

readBytes() 보호된 메소드

protected readBytes ( int offset, int size ) : byte[]
offset int
size int
리턴 byte[]

writeBytes() 보호된 메소드

protected writeBytes ( int offset, byte data ) : void
offset int
data byte
리턴 void