Checks if the word passed as a parameter is a stop word.

Namespace: MonoSoftware.MonoX.Utilities
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static bool IsStopWord(
	string word
)
Visual Basic
Public Shared Function IsStopWord ( 
	word As String
) As Boolean
Visual C++
public:
static bool IsStopWord(
	String^ word
)
F#
static member IsStopWord : 
        word : string -> bool 

Parameters

word
Type: System..::..String
Word to check

Return Value

Type: Boolean
True if parameter word is a stop word, false otherwise

See Also