Exemplo n.º 1
0
        public static Console_message load_Console_message(Save_tag path)
        {
            List <string>   strs = load_list_of_strings(path);
            Console_message cm   = new Console_message(strs[0], strs[1], strs[2]);

            return(cm);
        }
Exemplo n.º 2
0
        public static void save_Console_message(Save_tag path, Console_message c)
        {
            List <string> strs = new List <string>()
            {
                c.author, c.message, c.time
            };

            save_list_of_strings(path, strs);
        }