ABB.Swum.Nodes.PhraseNode.GetWord C# (CSharp) 메소드

GetWord() 공개 메소드

Returns the word within the phrase at the given index.
public GetWord ( int wordIndex ) : WordNode
wordIndex int The index of the word to get.
리턴 WordNode
        public WordNode GetWord(int wordIndex) {
            return Words[wordIndex];
        }