Beispiel #1
0
        public void LoadDatabase()
        {
            DatabaseSystem DBS = new DatabaseSystem();

            this.dictionaryOfWords = DBS.Load();

            if (this.dictionaryOfWords == null)
            {
                this.dictionaryOfWords = new Dictionary <string, string>();
            }
        }
Beispiel #2
0
        public void Save()
        {
            DatabaseSystem DBS = new DatabaseSystem();

            DBS.Save(dictionaryOfWords);
        }