Storing SchemaMapper information into XML - munchy-bytes/SchemaMapper GitHub Wiki
To prevent repeating your work, you can save the SchemaMapper
class into an XML file using the following method:
smPasswords.WriteToXml(Environment.CurrentDirectory + "\\SchemaMapper\\1.xml");
When you need it, you can create a new SchemaMapper
class based on the XML file:
SchemaMapper smPasswords = new SchemaMapper(Environment.CurrentDirectory + "\\SchemaMapper\\1.xml");
Or you can load it into an existing SchemaMapper
class:
smPassword.ReadFromXML(Environment.CurrentDirectory + "\\SchemaMapper\\1.xml");