C# 클래스 Panta.Indexing.IndexString

A structure that can hold a prefix string and a root string. Prefixes mainly for defining the type of root data, for more accurate search results
파일 보기 프로젝트 열기: renmengye/CoursePlanner 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Prefix string
Root string

공개 메소드들

메소드 설명
IndexString ( string prefix, string root ) : System
ToSplittedStrings ( ) : IEnumerable

Parse the root string and form the concatenation of prefix and the parsed parts of the root for inverted word index

ToString ( ) : string

메소드 상세

IndexString() 공개 메소드

public IndexString ( string prefix, string root ) : System
prefix string
root string
리턴 System

ToSplittedStrings() 공개 메소드

Parse the root string and form the concatenation of prefix and the parsed parts of the root for inverted word index
public ToSplittedStrings ( ) : IEnumerable
리턴 IEnumerable

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

프로퍼티 상세

Prefix 공개적으로 프로퍼티

public string Prefix
리턴 string

Root 공개적으로 프로퍼티

public string Root
리턴 string