C# 클래스 Util.SearchBinary

파일 보기 프로젝트 열기: SubaruDieselCrew/ScoobyRom

공개 메소드들

메소드 설명
ExtendFind ( Stream stream, bool>.Func check ) : byte[]
ExtendFindASCII ( Stream stream, bool>.Func check ) : string
FindASCII ( Stream stream, string target ) : int?

Returns the stream position of the first occurence of specified string.

FindBytes ( Stream stream, byte target ) : int?

Returns the stream position of the first occurence of specified bytes.

메소드 상세

ExtendFind() 공개 정적인 메소드

public static ExtendFind ( Stream stream, bool>.Func check ) : byte[]
stream Stream
check bool>.Func
리턴 byte[]

ExtendFindASCII() 공개 정적인 메소드

public static ExtendFindASCII ( Stream stream, bool>.Func check ) : string
stream Stream
check bool>.Func
리턴 string

FindASCII() 공개 정적인 메소드

Returns the stream position of the first occurence of specified string.
public static FindASCII ( Stream stream, string target ) : int?
stream Stream Data.
target string String to search for.
리턴 int?

FindBytes() 공개 정적인 메소드

Returns the stream position of the first occurence of specified bytes.
public static FindBytes ( Stream stream, byte target ) : int?
stream Stream Data.
target byte Values to search for.
리턴 int?