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
Mostrar archivo Open project: renmengye/CoursePlanner Class Usage Examples

Public Properties

Property Type Description
Prefix string
Root string

Public Methods

Method 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 method

public IndexString ( string prefix, string root ) : System
prefix string
root string
return System

ToSplittedStrings() public method

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

ToString() public method

public ToString ( ) : string
return string

Property Details

Prefix public_oe property

public string Prefix
return string

Root public_oe property

public string Root
return string