NClassifier.Bayesian.BayesianClassifier.IsClassifiableWord C# (CSharp) Méthode

IsClassifiableWord() private méthode

private IsClassifiableWord ( string word ) : bool
word string
Résultat bool
        private bool IsClassifiableWord(string word)
        {
            if (word == null || word == string.Empty || _stopWordProvider.IsStopWord(word))
                return false;
            else
                return true;
        }