public void ExporterTest() { GeneralExporter <CataloguePool> exporter = new GeneralExporter <CataloguePool>("export.ld"); Assert.IsTrue(exporter.Export(cpl)); }
public bool SaveSetting(GS instance) { GeneralExporter <GS> exporter = new GeneralExporter <GS>(OutputFile, "version", VERSION); return(exporter.Export(instance)); }
public bool SaveAs(string path) { GeneralExporter <Interpreter> ge = new GeneralExporter <Interpreter>(path); return(ge.Export(this, "Actions")); }