Exemplo n.º 1
0
        public void SaveXml()
        {
            res_info wry = new res_info(LibraryPath, table_data, true);

            Global.cstat(ConsoleColor.Red, LibraryPath);
            wry.Save();
        }
Exemplo n.º 2
0
 public void SaveXml(res_info res, string basepath, string pathname)
 {
     res.Save(Path.Combine(basepath, string.Format("{0}-dump.xml", pathname)));
 }
Exemplo n.º 3
0
        public void SaveXml(string basepath, string pathname)
        {
            res_info wry = new res_info(LibraryPath, table_data, true);

            wry.Save(Path.Combine(basepath, string.Format("{0}-dump.xml", pathname)));
        }
Exemplo n.º 4
0
 static public bool Save(string path, res_info obj)
 {
     System.IO.Serial.SerializeXml(path, typeof(res_info), obj);
     return(true);
 }