NClassifier.Bayesian.BayesianClassifier.IsClassifiableWord C# (CSharp) 메소드

IsClassifiableWord() 개인적인 메소드

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