C# 클래스 TagTool.Cache.StringIDResolverBase

Base class for an object which converts stringID values to and from string list indices.
파일 보기 프로젝트 열기: TheGuardians/TagTool 1 사용 예제들

공개 메소드들

메소드 설명
GetMaxSetStringIndex ( ) : int

Gets the index of the last string which belongs to a set.

GetMinSetStringIndex ( ) : int

Gets the index of the first string which belongs to a set.

GetSetOffsets ( ) : int[]

Gets the beginning offset for each set.

IndexToStringID ( int index ) : StringID

Converts a string list index to a stringID value.

StringIDToIndex ( StringID stringId ) : int

Converts a stringID value to a string list index.

메소드 상세

GetMaxSetStringIndex() 공개 추상적인 메소드

Gets the index of the last string which belongs to a set.
public abstract GetMaxSetStringIndex ( ) : int
리턴 int

GetMinSetStringIndex() 공개 추상적인 메소드

Gets the index of the first string which belongs to a set.
public abstract GetMinSetStringIndex ( ) : int
리턴 int

GetSetOffsets() 공개 추상적인 메소드

Gets the beginning offset for each set.
public abstract GetSetOffsets ( ) : int[]
리턴 int[]

IndexToStringID() 공개 메소드

Converts a string list index to a stringID value.
public IndexToStringID ( int index ) : StringID
index int The index.
리턴 StringID

StringIDToIndex() 공개 메소드

Converts a stringID value to a string list index.
public StringIDToIndex ( StringID stringId ) : int
stringId StringID The stringID.
리턴 int