コード例 #1
0
        static void Main(string[] args)
        {
            var dbLocation = new FileInfo(@"database.dat");
            var outputFile = new FileInfo(@"output.json");

            using (var eseDatabase = new ESEDatabase(dbLocation))
            {
                eseDatabase.JsonDump(outputFile);
            }
        }