Exemple #1
0
        public void printChain(WordChain wchain)
        {
            while (wchain.getSize() != 0)
            {
                Word w = wchain.wordChain[0];
                wchain.wordChain.RemoveAt(0);
                fs.Write(w.Get_allWord() + " ");
            }

            fs.Close();
        }