Example #1
0
 public void SaveData()
 {
     this.content = FileParser.ParseToText(this.Participants);
     File.WriteAllText(this.Path, this.content);
 }
Example #2
0
 public void ReadData()
 {
     this.content      = File.ReadAllText(this.Path);
     this.Participants = FileParser.ParseList(this.content);
 }