C# Класс TagTool.Cache.StringIDResolverBase

Base class for an object which converts stringID values to and from string list indices.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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