C# Class trainer.ByteSearch

Allows for searching of patterns in an array of bytes.
Exibir arquivo Open project: apeape/trainer

Public Methods

Method Description
ByteSearch ( string pattern ) : System

Match ( byte data ) : UInt32

Match an array of bytes against the pattern.

Match ( byte data, int size ) : UInt32

Match an array of bytes against the pattern.

Method Details

ByteSearch() public method

public ByteSearch ( string pattern ) : System
pattern string
return System

Match() public method

Match an array of bytes against the pattern.
public Match ( byte data ) : UInt32
data byte
return System.UInt32

Match() public method

Match an array of bytes against the pattern.
public Match ( byte data, int size ) : UInt32
data byte
size int Size of the data
return System.UInt32