C# Class 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
Afficher le fichier Open project: renmengye/CoursePlanner Class Usage Examples

Méthodes publiques

Свойство Type Description
Prefix string
Root string

Méthodes publiques

Méthode Description
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

Method Details

IndexString() public méthode

public IndexString ( string prefix, string root ) : System
prefix string
root string
Résultat System

ToSplittedStrings() public méthode

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

ToString() public méthode

public ToString ( ) : string
Résultat string

Property Details

Prefix public_oe property

public string Prefix
Résultat string

Root public_oe property

public string Root
Résultat string