ABB.Swum.Nodes.PhraseNode.InitWords C# (CSharp) Метод

InitWords() защищенный Метод

Initializes the list of WordNodes by creating a new node for each word string.
protected InitWords ( IEnumerable words ) : void
words IEnumerable String versions of the words in the phrase.
Результат void
        protected virtual void InitWords(IEnumerable<string> words) {
            foreach(string word in words) {
                this.Words.Add(new WordNode(word));
            }
        }