Example #1
0
 /// <summary>
 /// The save all.
 /// </summary>
 /// <param name="fileName">
 /// The file name.
 /// </param>
 public void SaveAll(string fileName)
 {
     PopManager.Delimiter = Delim;
     PopManager.SavePops(fileName, this);
 }
Example #2
0
 /// <summary>
 /// The get all.
 /// </summary>
 /// <param name="fileName">
 /// The file name.
 /// </param>
 /// <returns>
 /// The <see cref="PopList"/>.
 /// </returns>
 public static PopList GetAll(string fileName)
 {
     PopManager.Delimiter = Delim;
     return(PopManager.GetPops(fileName));
 }