Exemple #1
0
        private string LoadLastOutput()
        {
            string fpath = MainWindowModel.GetApplicationDataPath(JSON_Output);

            if (File.Exists(fpath))
            {
                return(File.ReadAllText(fpath));
            }
            return(String.Empty);
        }
Exemple #2
0
        private void SaveLastOutput()
        {
            string fpath = MainWindowModel.GetApplicationDataPath(JSON_Output);

            File.WriteAllText(fpath, Output);
        }