[Missing <summary> documentation for "M:Lucene.Net.Analysis.StopFilter.MakeStopSet(System.String[],System.Boolean)"]

Namespace: Lucene.Net.Analysis
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public static Hashtable MakeStopSet(
	string[] stopWords,
	bool ignoreCase
)
Visual Basic
Public Shared Function MakeStopSet ( _
	stopWords As String(), _
	ignoreCase As Boolean _
) As Hashtable
Visual C++
public:
static Hashtable^ MakeStopSet(
	array<String^>^ stopWords, 
	bool ignoreCase
)

Parameters

stopWords
Type: array<System..::..String>[]()[][]
An array of stopwords
ignoreCase
Type: System..::..Boolean
If true, all words are lower cased first.

Return Value

a Set containing the words

See Also