C# Class AsmResolver.MemoryStreamReader

Inheritance: IBinaryStreamReader
显示文件 Open project: JerreS/AsmResolver Class Usage Examples

Public Methods

Method Description
CreateSubReader ( long address, int size ) : IBinaryStreamReader
MemoryStreamReader ( byte data ) : System
MemoryStreamReader ( byte data, int startOffset, int endOffset ) : System
ReadByte ( ) : byte
ReadBytes ( int count ) : byte[]
ReadBytesUntil ( byte value ) : byte[]
ReadDouble ( ) : double
ReadInt16 ( ) : short
ReadInt32 ( ) : int
ReadInt64 ( ) : long
ReadSByte ( ) : sbyte
ReadSingle ( ) : float
ReadUInt16 ( ) : ushort
ReadUInt32 ( ) : uint
ReadUInt64 ( ) : ulong

Private Methods

Method Description
Advance ( int count ) : void

Method Details

CreateSubReader() public method

public CreateSubReader ( long address, int size ) : IBinaryStreamReader
address long
size int
return IBinaryStreamReader

MemoryStreamReader() public method

public MemoryStreamReader ( byte data ) : System
data byte
return System

MemoryStreamReader() public method

public MemoryStreamReader ( byte data, int startOffset, int endOffset ) : System
data byte
startOffset int
endOffset int
return System

ReadByte() public method

public ReadByte ( ) : byte
return byte

ReadBytes() public method

public ReadBytes ( int count ) : byte[]
count int
return byte[]

ReadBytesUntil() public method

public ReadBytesUntil ( byte value ) : byte[]
value byte
return byte[]

ReadDouble() public method

public ReadDouble ( ) : double
return double

ReadInt16() public method

public ReadInt16 ( ) : short
return short

ReadInt32() public method

public ReadInt32 ( ) : int
return int

ReadInt64() public method

public ReadInt64 ( ) : long
return long

ReadSByte() public method

public ReadSByte ( ) : sbyte
return sbyte

ReadSingle() public method

public ReadSingle ( ) : float
return float

ReadUInt16() public method

public ReadUInt16 ( ) : ushort
return ushort

ReadUInt32() public method

public ReadUInt32 ( ) : uint
return uint

ReadUInt64() public method

public ReadUInt64 ( ) : ulong
return ulong