Esempio n. 1
0
 public Deserializer(BEV_File _bevFile, string location)
 {
     saveLocation = location;
     bevFile      = _bevFile;
     bevFile.SortEntries();
     WriteFile();
     SaveBinaryFile();
 }
Esempio n. 2
0
 public Deserializer(string location)
 {
     saveLocation = String.Format("{0}/{1}", Path.GetDirectoryName(location), Path.GetFileNameWithoutExtension(location));
     ReadXmlFile(location);
     bevFile.SortEntries();
     WriteFile();
     SaveBinaryFile();
 }
Esempio n. 3
0
 public Deserializer(BEV_File _bevFile)
 {
     bevFile = _bevFile;
     bevFile.SortEntries();
     WriteFile();
 }