Beispiel #1
0
 public Doo filesGetProperties(string path)
 {
     Doo parsed = new Doo();
     PropertiesParser x = new PropertiesParser();
     parsed = x.Parse(filesRead(path)) as Doo;
     return parsed;
 }
Beispiel #2
0
 public bool filesWriteProperties(string path, Doo properties)
 {
     PropertiesParser x = new PropertiesParser();
     if (filesWrite_Binary_UTF8Text(path, x.Serialize(properties)))
     {
         return true;
     }
     else
     {
         return false;
     }
 }