StopWordDictionary

StopWordDictionary class

Represents a dictionary of stop words.

public class StopWordDictionary : DictionaryBase, IEnumerable<string>

Properties

Name Description
Count { get; } Gets the number of stop words contained in the StopWordDictionary.
override DictionaryType { get; } Gets the dictionary type.

Methods

Name Description
AddRange(IEnumerable<string>) Adds the specified collection of words to this instance of the StopWordDictionary.
AddRange(string[]) Adds the specified collection of words to this instance of the StopWordDictionary.
override Clear() Removes all words from a StopWordDictionary object.
Contains(string) Determines whether a StopWordDictionary object contains the specified word.
ExportDictionary(string) Exports the dictionary to a file with the specified name.
GetEnumerator() Returns an enumerator that iterates through the collection.
ImportDictionary(string) Imports a dictionary from the specified file.
RemoveRange(IEnumerable<string>) Removes the specified collection of words from this instance of the StopWordDictionary.
RemoveRange(string[]) Removes the specified collection of words from this instance of the StopWordDictionary.

Remarks

Learn more

See Also