ABB.Swum.Nodes.PhraseNode.PhraseNode C# (CSharp) Method

PhraseNode() public method

Creates a new PhraseNode, containing the given words.
public PhraseNode ( IEnumerable words ) : System
words IEnumerable The words in the phrase.
return System
        public PhraseNode(IEnumerable<string> words)
            : this() {
            if(words != null) {
                InitWords(words);
            }
        }

Same methods

PhraseNode::PhraseNode ( ) : System
PhraseNode::PhraseNode ( IEnumerable words, Location location, bool containsPreposition ) : System
PhraseNode::PhraseNode ( string id, IdSplitter splitter ) : System