Inverter Constructor (String, String, String, String, List(String), IStore)

Stot

Stot

Inverter Constructor (String, String, String, String, List<(Of <(<'String>)>)>, IStore)

Initializes a new instance of the [Inverter] class.

Namespace:  Engine
Assembly:  Engine (in Engine.dll)

Syntax


public Inverter(
	string StopWords,
	string DictionaryPath,
	string CommonWordsPath,
	string FormatsPath,
	List<string> BooksPaths,
	IStore database
)
Public Sub New ( _
	StopWords As String, _
	DictionaryPath As String, _
	CommonWordsPath As String, _
	FormatsPath As String, _
	BooksPaths As List(Of String), _
	database As IStore _
)
public:
Inverter(
	String^ StopWords, 
	String^ DictionaryPath, 
	String^ CommonWordsPath, 
	String^ FormatsPath, 
	List<String^>^ BooksPaths, 
	IStore^ database
)

Parameters

StopWords
Type: String
The path to a File Containing all the stop words.
DictionaryPath
Type: String
The path to the file holding all legal words.
CommonWordsPath
Type: String
The path to the file holding most coomonly used words.
FormatsPath
Type: String
The path to the file holding all supported file types.
BooksPaths
Type: List<(Of <(<'String>)>)>
Paths to Books, used for frequency nalysis of words.
database
Type: Engine..::..IStore
The database to use with this inverter.