C# 클래스 AlbLib.Common

Contains various common functions and magic contants.
파일 보기 프로젝트 열기: IllidanS4/AlbLib

공개 메소드들

메소드 설명
E ( int index, int &fileIndex, int &subfileIndex ) : bool

Converts nullable index to file index and subfile index

E ( int fileIndex, int subfileIndex ) : int

Converts file and subfile index to nullable index.

Skip ( this input, int bytes ) : int

Skips bytes from stream.

메소드 상세

E() 공개 정적인 메소드

Converts nullable index to file index and subfile index
public static E ( int index, int &fileIndex, int &subfileIndex ) : bool
index int /// Nullable index. (0 = null, 1 - 99 => 0 - 99, 100+ => 100+) ///
fileIndex int /// File index. ///
subfileIndex int /// Subfile index. ///
리턴 bool

E() 공개 정적인 메소드

Converts file and subfile index to nullable index.
public static E ( int fileIndex, int subfileIndex ) : int
fileIndex int /// File index. ///
subfileIndex int /// Subfile index. ///
리턴 int

Skip() 공개 정적인 메소드

Skips bytes from stream.
public static Skip ( this input, int bytes ) : int
input this /// Input stream. ///
bytes int /// Number of bytes to skip. ///
리턴 int