C# Класс ICSharpCode.TextEditor.Util.LookupTable

This class implements a keyword map. It implements a digital search trees (tries) to find a word.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
LookupTable ( bool casesensitive ) : System

Creates a new instance of LookupTable

this ( IDocument document, LineSegment line, int offset, int length ) : object

Get the object, which was inserted under the keyword (line, at offset, with length length), returns null, if no such keyword was inserted.

this ( string keyword ) : object

Inserts an object in the tree, under keyword

Описание методов

LookupTable() публичный Метод

Creates a new instance of LookupTable
public LookupTable ( bool casesensitive ) : System
casesensitive bool
Результат System

this() публичный Метод

Get the object, which was inserted under the keyword (line, at offset, with length length), returns null, if no such keyword was inserted.
public this ( IDocument document, LineSegment line, int offset, int length ) : object
document IDocument
line ICSharpCode.TextEditor.Document.LineSegment
offset int
length int
Результат object

this() публичный Метод

Inserts an object in the tree, under keyword
public this ( string keyword ) : object
keyword string
Результат object