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