예제 #1
0
 public static bool TryContinue(string path)
 {
     _path = path;
     if (File.Exists(path + "species"))
     {
         members        = Saver.BinaryLoad(path + "dnaData") as List <DNA>;
         Specie.species = Saver.BinaryLoad(path + "species") as List <Specie>;
     }
     Console.WriteLine("cant load specie");
     return(false);
 }