public string this[int index] { get { string[] Allwords = AllFileText.Split(' '); return(Allwords[index]); } }
public override void PrintFile() { string[] Allwords = AllFileText.Split(' '); foreach (string word in Allwords) { Console.WriteLine(word); } }