Example #1
0
 public static void Init()
 {
     if (File.Exists(path))
     {
         XmlOperator xmlopertor = new XmlOperator();
         problem = xmlopertor.readXML(path);
     }
 }
Example #2
0
        public static void Save()
        {
            XmlOperator xmlopertor = new XmlOperator();

            xmlopertor.XMLSerialized(path, problem);
        }