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

RemoveWord() public method

Removes the word from the phrase at the given index.
public RemoveWord ( int wordIndex ) : void
wordIndex int The index of the word to remove.
return void
        public void RemoveWord(int wordIndex) {
            Words.RemoveAt(wordIndex);
        }