C# Класс ScrewTurn.Wiki.SearchEngine.DumpedWord

Represents a word structured for easy dumping to disk or database.
The class is not thread-safe.
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
id uint
text string

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

Метод Описание
DumpedWord ( Word word ) : System

Initializes a new instance of the DumpedWord class.

DumpedWord ( uint id, string text ) : System

Initializes a new instance of the DumpedWord class.

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

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

Initializes a new instance of the DumpedWord class.
If is null.
public DumpedWord ( Word word ) : System
word Word The word to extract the information from.
Результат System

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

Initializes a new instance of the DumpedWord class.
If is null. If is empty.
public DumpedWord ( uint id, string text ) : System
id uint The unique word ID.
text string The word culture-invariant lowercase text.
Результат System

Описание свойств

id защищенное свойство

The word unique ID.
protected uint id
Результат uint

text защищенное свойство

The word culture-invariant lowercase text.
protected string text
Результат string