We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
To prevent repeating your work, you can save the SchemaMapper class into an XML file using the following method:
SchemaMapper
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");