C# 클래스 ScrewTurn.Wiki.SearchEngine.DumpedWord

Represents a word structured for easy dumping to disk or database.
The class is not thread-safe.
파일 보기 프로젝트 열기: mono/ScrewTurnWiki 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
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