ABB.Swum.Nodes.PhraseNode.InitWords C# (CSharp) Méthode

InitWords() protected méthode

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.
Résultat void
        protected virtual void InitWords(IEnumerable<string> words) {
            foreach(string word in words) {
                this.Words.Add(new WordNode(word));
            }
        }