Skip to content

Instantly share code, notes, and snippets.

@jmreynolds
Created July 31, 2014 07:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmreynolds/b17c8b67cf8254936482 to your computer and use it in GitHub Desktop.
Save jmreynolds/b17c8b67cf8254936482 to your computer and use it in GitHub Desktop.
The main program of the MDB to XML Schema Converter
class Program
{
static void Main(string[] args)
{
var mdbToXml = new MdbToXml();
mdbToXml.GenerateXmlOutput(pathToData: @"C:\Temp\20140728\new.mdb", pathToOutput: @"C:\Temp\20140728\new.xml");
mdbToXml.GenerateXmlOutput(pathToData: @"C:\Temp\20140728\old.mdb", pathToOutput: @"C:\Temp\20140728\old.xml");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment