ABB.Swum.Nodes.WordNode.GetNewWord C# (CSharp) Method

GetNewWord() public method

Returns a new node of the same type, containing the given text and part-of-speech tag.
public GetNewWord ( string text, PartOfSpeechTag tag ) : WordNode
text string The text of the new word.
tag PartOfSpeechTag the part-of-speech tag of the new word.
return WordNode
        public virtual WordNode GetNewWord(string text, PartOfSpeechTag tag) {
            return new WordNode(text, tag);
        }
    }

Same methods

WordNode::GetNewWord ( ) : WordNode